2021-06-21 16:21:50 +03:00
|
|
|
@extends('layouts.admin')
|
|
|
|
|
2021-06-27 12:59:56 +03:00
|
|
|
@section('title', trans('revenues.revenue_received'))
|
2021-06-21 16:21:50 +03:00
|
|
|
|
|
|
|
@section('new_button')
|
2021-06-24 13:52:49 +03:00
|
|
|
<x-transactions.show.top-buttons type="income" :transaction="$revenue" />
|
2021-06-21 16:21:50 +03:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('content')
|
2021-06-24 13:52:49 +03:00
|
|
|
<x-transactions.show.content type="income" :transaction="$revenue" />
|
2021-06-21 16:21:50 +03:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('scripts_start')
|
2021-06-24 13:52:49 +03:00
|
|
|
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
|
2021-06-23 13:37:02 +03:00
|
|
|
|
2021-06-24 13:52:49 +03:00
|
|
|
<x-transactions.script type="income" />
|
2021-06-21 16:21:50 +03:00
|
|
|
@endpush
|