ST: {{ number_format($total['subTotal'],2) }}
@if(isset($total['tax'])) @foreach($total['tax'] as $key1 => $tax) @if($tax != 0){{ $key1 }}: {{ number_format($tax, 2) }}
@endif @endforeach @endifGT: {{ number_format($total['grandTotal'],2) }}
ST: {{ number_format($grandTotal['subTotal'],2) }}
@if(isset($grandTotal['tax'])) @foreach($grandTotal['tax'] as $key1 => $tax) @if($tax != 0){{ $key1 }}: {{ number_format($tax, 2) }}
@endif @endforeach @endifGT: {{ number_format($grandTotal['grandTotal'],2) }}
Invoice Id | Company Name | Contact Name | Contact Number | Country | State | City | Due Date | Due Amount ({{ $franchiseCurrency }}) | Action | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $payment->ti_serial_number }} @if ($payment->currency_conversion_flag == 1) (Euro) @endif | @if($payment->company->name){{ $payment->company->name }} | @else- | @endif{{ $payment->contact->first_name }} {{ $payment->contact->last_name }} | {{ ($payment->contact->mobile) ? $payment->contact->mobile : '-' }} | @if($payment->company && $payment->company->countries && $payment->company->countries->name){{ $payment->company->countries->name }} | @else- | @endif @if($payment->company && $payment->company->states && $payment->company->states->name){{ $payment->company->states->name }} | @else- | @endif @if($payment->company && $payment->company->cities && $payment->company->cities->name){{ $payment->company->cities->name }} | @else- | @endif{{ $payment->tax_due_date_formatted_full }} |
ST: {{ number_format($payment->total_amount_converted,2) }} @foreach($payment->taxes as $tax) @php $countTax = ($tax->tax_value * $payment->total_amount_converted) / 100; @endphp @if($countTax != 0){{ $tax->tax_value }}% @if($tax->tax_title == 'Withholding Tax') WHT: @else{{ $tax->tax_title }}:@endif {{ number_format(($tax->tax_value * $payment->total_amount_converted) / 100,2) }} @endif @endforeachGT: {{ number_format($payment->sub_total_amount_converted,2) }} |
@permission('tax-invoice-write') monetization_on @endpermission @permission('send-finance-mail-write') notifications @endpermission @permission('tax-invoice-write') edit @endpermission @permission('tax-invoice-read') session('panel'),'id' => $payment->id]) }} title="View Tax Invoice" class="btn btn-view" target="_blank"> remove_red_eye @endpermission |