18 lines
545 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', setting('invoice.title', trans_choice('general.invoices', 1)) . ': ' . $invoice->document_number)
2017-09-14 22:21:00 +03:00
2020-12-24 01:28:38 +03:00
@section('new_button')
<x-documents.show.top-buttons type="invoice" :document="$invoice" />
@endsection
2017-09-14 22:21:00 +03:00
2020-12-24 01:28:38 +03:00
@section('content')
<x-documents.show.content type="invoice" :document="$invoice" hide-button-received />
@endsection
2017-09-14 22:21:00 +03:00
2019-11-16 10:21:14 +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">
<x-documents.script />
2017-11-13 21:55:15 +03:00
@endpush