{{ Str::ucfirst($user->name) }}
-
{{--
-
Email:
Marshall123@gmail.com
--}}
-
Phone:
{{ $user->phone_no ?? null }}
-
Location:
{{-- @dd($user->addresses); --}}{{ $user->addresses['0']['locality'] ?? null }}
@if ($address->house_type == App\Enums\AddressEnum::RESIDENTAL) Residental @elseif($address->house_type == App\Enums\AddressEnum::COMMERICAL) Commerical @else Others @endif
{{ $address->house_no }} {{ $address->direction }} {{ $address->locality }}
| Request Date | Order details | Pick Date and Time | Current Status |
|---|---|---|---|
| {{ $orderList->created_at }} |
{{-- @dd($orderList->categories); --}}
{{-- Category :
@foreach ($orderList->categories as $category)
{{ $category->name }}@if (!$loop->last)
,
@endif
@endforeach --}}
@if (!empty($orderList->subcategories))
SubCategory : @foreach ($orderList->subcategories as $subcategoryName)
{{ $subcategoryName->name }}@if (!$loop->last)
,
@endif
@endforeach
@endif
{{-- Weight : {{ $orderList->avg_weight }} --}} |
{{ $orderList->pickup_date }} {{ $orderList->pickup_time }} | @if ($orderList->pickup_completed == '1') Completed @elseif($orderList->pickup_day_status == '1') Pickup Day Status @elseif($orderList->confirm_call_status == '1') Confirm Call Status @elseif($orderList->is_cancel == '1') Order Cancel @else Pickup Request Pending @endif |