29 lines
674 B
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.admin')
2020-12-24 01:28:38 +03:00
@section('title', trans_choice('general.bills', 1) . ': ' . $bill->document_number)
@section('new_button')
2020-12-25 14:50:17 +03:00
<x-documents.show.top-buttons
2020-12-24 01:28:38 +03:00
type="bill"
:document="$bill"
hide-button-group-divider2
hide-button-customize
/>
@endsection
2017-09-14 22:21:00 +03:00
@section('content')
2020-12-25 14:50:17 +03:00
<x-documents.show.content
2020-12-24 01:28:38 +03:00
type="bill"
:document="$bill"
hide-button-sent
hide-button-email
hide-button-share
/>
@endsection
2019-11-27 10:06:27 +03:00
@push('scripts_start')
2020-12-24 01:28:38 +03:00
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
2020-12-25 14:50:17 +03:00
<x-documents.script type="bill" />
2019-11-27 10:06:27 +03:00
@endpush