18 lines
485 B
PHP
18 lines
485 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('title', trans('revenues.revenue_made'))
|
|
|
|
@section('new_button')
|
|
<x-transactions.show.top-buttons type="income" :transaction="$revenue" />
|
|
@endsection
|
|
|
|
@section('content')
|
|
<x-transactions.show.content type="income" :transaction="$revenue" />
|
|
@endsection
|
|
|
|
@push('scripts_start')
|
|
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
|
|
|
|
<x-transactions.script type="income" />
|
|
@endpush
|