{{ $branch->address ?? '' }}
@if ($branch->phone){{ getCountryCode() }} {{ $branch->phone ?? '' }}
{{ getCountryCode() }} {{ isset($site['company_mobile']) ? $site['company_mobile'] : ''}}
SIMPLIFIED TAX INVOICE | |
---|---|
{{isset($site['default_tax_name']) ? $site['default_tax_name'] : 'GST'}} No : | {{ $site['company_tax_registration'] ?? 'No Tax' }} |
Invoice No. : | {{ $invoice->invoice_number }} |
Date: | {{ \Carbon\Carbon::parse($invoice->date)->format('d/m/Y g:i A') }} |
File No : | {{ $invoice->customer_file_number }} |
item | rate | qty | total |
---|---|---|---|
{{ $row->item_name }} | {{ getFormattedCurrency($row->rate) }} | {{ $row->quantity }} @if ($row->type == 2) {{ getUnitType($row->unit_type ?? '') }} @endif | @endphp{{ getFormattedCurrency($row->total, 2) }} | @php $qty = $qty + $row->product_quantity; @endphp
Sub Total | {{ getFormattedCurrency($invoice->sub_total) }} |
Discount | {{ getFormattedCurrency($invoice->discount) }} |
Taxable Amount | {{ getFormattedCurrency($invoice->taxable_amount) }} |
Total {{isset($site['default_tax_name']) ? $site['default_tax_name'] : 'GST'}} ({{ $invoice->tax_percentage }}%) | {{ getFormattedCurrency($invoice->tax_amount) }} |
Total | {{ getFormattedCurrency($invoice->total) }} | @php $paid = \App\Models\InvoicePayment::where('invoice_id', $invoice->id)->sum('paid_amount'); @endphp
Advance | {{ getFormattedCurrency($paid) }} |
Balance | {{ getFormattedCurrency($invoice->total - $paid) }} |
{{ isset($site['default_thanks_message']) && !empty($site['default_thanks_message']) ? $site['default_thanks_message'] : '' }}
{{__('main.powered_by')}} {{ getApplicationName() }}