MySyncTax e-Invoice


Supplier

Name: {{ $supplier->registration_name }}
TIN: {{ $supplier->tin_no }}
ID No.: {{ $supplier->identification_no }}
Email: {{ $supplier->email }}
Phone: {{ $supplier->phone }}
Address: {{ $supplier->address_line_1 }} {{ $supplier->address_line_2 }}, {{ $supplier->city_name }}, {{ $supplier->postal_zone }}, {{ $supplier->country_code }}

Buyer

Name: {{ $customer->registration_name }}
TIN: {{ $customer->tin_no }}
ID No.: {{ $customer->identification_no }}
Email: {{ $customer->email }}
Phone: {{ $customer->phone }}
Address: {{ $customer->address_line_1 }} {{ $customer->address_line_2 }}, {{ $customer->city_name }}, {{ $customer->postal_zone }}, {{ $customer->country_code }}

Invoice Items
@php $i = 1; $total = 0; @endphp @foreach ($items as $item) @php $total += $item->line_extension_amount; @endphp @endforeach
No Description Qty Unit Price Discount Total
{{ $i++ }} {{ $item->item_description }} {{ $item->invoiced_quantity }} {{ number_format($item->price_amount, 2) }} {{ number_format($item->price_discount, 2) }} {{ number_format($item->line_extension_amount, 2) }}

Taxable Amount: MYR {{ number_format($invoice->taxable_amount, 2) }}

Tax Amount: MYR {{ number_format($invoice->tax_amount, 2) }}

@csrf