Student Information
| Name |
{{ strtoupper($student->name ?? '-') }} |
| Matric ID |
{{ $student->matric ?? '-' }} |
| Email Address |
{{ $student->email ?? '-' }} |
Parcel Details
| Sender |
{{ $parcel->sender ?? '-' }} |
| Size / Dimensions |
{{ $parcel->size ?? '-' }} |
| Location |
{{ $parcel->location ?? '-' }} |
| Collection Code |
{{ $parcel->collection_code ?? '-' }} |
Payment Information
| Service Fee |
RM 1.00
|
| Payment Status |
{{ $payment && $payment->verified_by ? 'Verified' : 'Paid' }} |
@if ($payment && $payment->payment_date)
| Payment Date |
{{ \Carbon\Carbon::parse($payment->payment_date)->format('d/m/Y') }} |
@endif