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