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 />
|
2020-06-09 18:19:17 +03:00
|
|
|
@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
|