{{-- Seller --}}
Seller

Legal name: PEMAJU DIGITAL SDN. BHD.

Brand name: PEMAJU DIGITAL SDN. BHD.

Reg. No.: 202101019555 (1419855-K)

Support email: pemajudigital@gmail.com

Support phone: +60 182954919

Invoice: CH{{ $invoice->id }}

Issued on: {{ $invoice->created_at->format('M d, Y') }}

Due on: {{ $invoice->created_at->format('M d, Y') }}

{{-- Buyer --}}
Buyer

Email: {{ $invoice->user->email }}

{{-- Products --}}
Products
PRODUCT PRICE
{{ $invoice->item_name }} RM {{ number_format($invoice->subtotal, 2)}}
{{-- Totals --}}
TOTAL RM {{ number_format($invoice->subtotal, 2)}}
DISCOUNT {{ $invoice->discount ? ($invoice->discount->type === 'fixed' ? 'RM' . number_format($invoice->discount->value, 2) : $invoice->discount->value . '%') : ''}}
LATE FEE CHARGE RM {{ number_format($invoice->late_fees, 2) }}