| Date | Invoice | Method | Note / Ref | Amount |
|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($payment->payment_date)->format('M d, Y') }} | {{ $payment->sale->invoice_no }} | {{ $payment->payment_method ?? 'Cash' }} | {{ $payment->note ?? '-' }} | LKR {{ number_format($payment->amount, 2) }} |
| No partial payments recorded yet. | ||||
| Date | Source | Points | Expiry | Status |
|---|---|---|---|---|
| {{ $log->created_at->format('M d, Y') }} | @if($log->sale) Sale #{{ $log->sale->invoice_no }} @else System adjustment @endif | @if($log->status == 1) +{{ number_format($log->points) }} @else -{{ number_format($log->points) }} @endif | @if($log->expiry_date) {{ \Carbon\Carbon::parse($log->expiry_date)->format('M d, Y') }} @else Never @endif | @if($log->status == 1) Active @elseif($log->status == 2) Redeemed @elseif($log->status == 3) Expired @endif |
| No loyalty point history found. | ||||
| Date | Type | Amount | Description | Reference |
|---|---|---|---|---|
| {{ $log->created_at->format('M d, Y h:i A') }} | @if($log->type == 'deposit') DEPOSIT @else WITHDRAWAL @endif | {{ $log->type == 'deposit' ? '+' : '-' }} LKR {{ number_format($log->amount, 2) }} | {{ $log->description }} | @if($log->sale) Sale #{{ $log->sale->invoice_no }} @else N/A @endif |
| No wallet transactions recorded yet. | ||||
| Date & Time | Category | Status | Message Payload |
|---|---|---|---|
| {{ $log->created_at->format('M d, Y h:i A') }} | {{ $log->category }} | @if($log->status === 'sent') Sent @else Failed @endif |
"{{ $log->message }}" |
| No SMS history recorded for this customer. | |||