@props([ 'pageName' => 'Delivery Report', ])
| Date | S_ID | Subscriber | Phone | Address | Meals to Pack | Delivery At |
|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($row->date)->setTimezone(config('app.timezone'))->format('d M Y') }} | {{ $row->subscriber_id }} | {{ $row->subscriber_name }} | {{ $row->subscriber_phone }} | {{ $row->subscriber_address }} | {{ implode(', ', collect($row->meal_names)->map(fn($meal) => ucfirst(str_replace('-', '_', $meal)))->toArray()) }} | {{ $row->delivered_at }} |