INVOICE

{{ __('Invoice No: ' . $application->payment->invoice_no) }}


BILLED TO:

{{ 'Attn: ' . ($application->payment->contact_person ?? $contactPerson?->name) }}

{{ $application->payment->company_name ?? ($contactPerson?->company->company_name . " ({$contactPerson?->company->registration_no})") }}

{{ $application->payment->address ?? $contactPerson?->company->full_address }}

{{ 'Email: ' . ($application->payment->email ?? $contactPerson?->email) }}

{{ 'Tel: ' . ($application->payment->phone_no ?? $contactPerson?->phone_no) }}

{{ __('Invoice Date: ' . $application->payment->created_at) }}

Terms: 14 Days

{{-- subtotal exclude sst --}} {{-- sst (8%) --}} {{-- Total include sst --}} {{-- balance due --}}
Description SST Amount Amount
Being charged for MyHIJAU Mark Service Application Fee for:

  1. Application Number: {{ $application->application_no }} @if ($application->type == \App\Models\Application::TYPE_PRODUCT) which consists of {{ $application->products->count() }} product{{ $application->products->count() > 1 ? 's' : '' }}. @endif
  2. {{ \App\Models\PricingScheme::LANES[$application->payment->pricing->lane] }}
RM {{ number_format($payment->sst_amount, 2) }} RM {{ number_format($payment->total - $payment->sst_amount, 2) }}
Subtotal (excld.SST) RM {{ number_format($payment->total - $payment->sst_amount, 2) }}
{{ 'SST' . '( ' . $pricing->sst . ' %)' }} RM {{ number_format($payment->sst_amount, 2) }}
Total (incld.SST) RM {{ number_format($payment->total, 2) }}
Balance Due RM {{ number_format($payment->total, 2) }}

Amount (Malaysia Ringgit): {{ numberToWords($payment->total) }} RM {{ number_format($payment->total, 2) }}