@section('page_title', __('Invoice')) @section('styles') {!! Minify::stylesheet([ '/css/pages/invoices.css', ])->withFullUrl() !!} @stop @include('template.head')
{{__('Description')}} | {{--Qty | --}}{{__('Total')}} | |
---|---|---|---|
{{\App\Providers\InvoiceServiceProvider::getInvoiceDescriptionByTransaction($invoice->transaction)}} | {{--1 | --}}{{\App\Providers\SettingsServiceProvider::getWebsiteFormattedAmount($invoice->decodedData['subtotal'])}} | |
{{__('Total taxes')}}: | {{ \App\Providers\SettingsServiceProvider::getWebsiteFormattedAmount($invoice->decodedData['taxesTotalAmount'])}} | ||
{{$tax['taxName']}} @if(isset($tax['taxPercentage'])) ({{$tax['taxPercentage']}} %{{$tax['taxType'] === 'inclusive' ? ' incl.' : ''}}) @endif | {{\App\Providers\SettingsServiceProvider::getWebsiteFormattedAmount($tax['taxAmount'])}} | ||
{{__('Total:')}} | {{\App\Providers\SettingsServiceProvider::getWebsiteFormattedAmount($invoice->decodedData['totalAmount'])}} |
⚠ {{__("Invalid invoice data provided")}}