28 lines
1001 B
PHP
Raw Permalink Normal View History

2022-06-01 10:15:55 +03:00
<x-layouts.admin>
<x-slot name="title">
{{ setting('invoice.title', trans_choice('general.invoices', 1)) . ': ' . $invoice->document_number }}
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="status">
<x-show.status status="{{ $invoice->status }}" background-color="bg-{{ $invoice->status_label }}" text-color="text-text-{{ $invoice->status_label }}" />
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="buttons">
<x-documents.show.buttons type="invoice" :document="$invoice" />
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="moreButtons">
<x-documents.show.more-buttons type="invoice" :document="$invoice" />
</x-slot>
2017-09-14 22:21:00 +03:00
2022-06-01 10:15:55 +03:00
<x-slot name="content">
<x-documents.show.content type="invoice" :document="$invoice" hide-receive hide-make-payment hide-schedule hide-children />
</x-slot>
@push('stylesheet')
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
@endpush
2020-12-24 01:28:38 +03:00
2020-12-25 14:50:17 +03:00
<x-documents.script type="invoice" />
2022-06-01 10:15:55 +03:00
</x-layouts.admin>