2022-06-01 10:15:55 +03:00
|
|
|
<x-layouts.admin>
|
|
|
|
<x-slot name="title">
|
|
|
|
{{ trans_choice('general.bills', 1) . ': ' . $bill->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="{{ $bill->status }}" background-color="bg-{{ $bill->status_label }}" text-color="text-text-{{ $bill->status_label }}" />
|
|
|
|
</x-slot>
|
2020-12-24 01:28:38 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-slot name="buttons">
|
|
|
|
<x-documents.show.buttons type="bill" :document="$bill" />
|
|
|
|
</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="bill"
|
|
|
|
:document="$bill"
|
|
|
|
hide-email
|
|
|
|
hide-share
|
|
|
|
hide-divider3
|
|
|
|
hide-customize
|
|
|
|
/>
|
|
|
|
</x-slot>
|
2019-11-27 10:06:27 +03:00
|
|
|
|
2022-06-01 10:15:55 +03:00
|
|
|
<x-slot name="content">
|
|
|
|
<x-documents.show.content
|
|
|
|
type="bill"
|
|
|
|
:document="$bill"
|
|
|
|
hide-send
|
|
|
|
hide-get-paid
|
|
|
|
hide-email
|
|
|
|
hide-share
|
|
|
|
hide-accept-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="bill" />
|
2022-06-01 10:15:55 +03:00
|
|
|
</x-layouts.admin>
|