@if(config('visibility.bill_files_section'))
@lang('lang.attachments')
@foreach($files as $file) @include('pages.bill.components.elements.attachment') @endforeach @if(config('visibility.bill_mode') == 'editing' && (auth()->check() && auth()->user()->role->role_estimates >= 3))
@endif
@if(auth()->check() && auth()->user()->role->role_estimates >= 3) @endif
@endif
@if($bill->bill_discount_type == 'percentage') @else @endif @if($bill->bill_tax_type == 'summary') @foreach($bill->taxes as $tax) @endforeach @endif @if($bill->bill_tax_type == 'inline') @endif
{{ cleanLang(__('lang.subtotal')) }} {!! runtimeMoneyFormatPDF($bill->bill_subtotal) !!}
{{ cleanLang(__('lang.discount')) }} ({{ $bill->bill_discount_percentage }}%) {{ cleanLang(__('lang.discount')) }} ({{ cleanLang(__('lang.fixed')) }}) -{!! runtimeMoneyFormatPDF($bill->bill_discount_amount) !!}
{{ $tax->tax_name }} ({{ $tax->tax_rate }}%) {!! runtimeMoneyFormatPDF(($bill->bill_amount_before_tax * $tax->tax_rate)/100) !!}
@lang('lang.tax') {!! runtimeMoneyFormatPDF($bill->bill_tax_total_amount) !!}
{{ $bill->bill_adjustment_description }} {!! runtimeMoneyFormatPDF($bill->bill_adjustment_amount) !!}
{{ cleanLang(__('lang.total')) }} {!! runtimeMoneyFormatPDF($bill->bill_final_amount) !!}