My Order Detail
  • Order ID {{ $order->id }}
  • User Name {{ $order->user->first_name }} {{ $order->user->last_name }}
  • Order Date {{ $order->order_date }}
  • Price {{ $order->price }}
  • Pickup Locations @foreach ($order->pickups($order->id) as $pickup) Company :: {{ $pickup->company_name }} Responsible Person :: {{ $pickup->responsible_person_name }} Responsible Person Email :: {{ $pickup->responsible_person_email }} Contact :: {{ $pickup->contact ?? 'NA' }} Address :: {{ $pickup->address }} City :: {{ $pickup->city }} Country :: {{ $pickup->country }} Pickup Date :: {{ $pickup->pickup_date }} Pickup Time :: {{ $pickup->pickup_time }} ------------------------------------------ @endforeach
  • Drop Off Locations @foreach ($order->dropoffs($order->id) as $dropoff) Company :: {{ $dropoff->company_name }} Responsible Person :: {{ $dropoff->responsible_person_name }} Responsible Person Email :: {{ $dropoff->responsible_person_email }} Contact :: {{ $dropoff->contact ?? 'NA' }} Address :: {{ $dropoff->address }} City :: {{ $dropoff->city }} Country :: {{ $dropoff->country }} Drop Off Time :: {{ $dropoff->unloading_time }} ------------------------------------------ @endforeach
  • {{--
  • Pickup Date/Time jose@yourmail.com
  • Drop Off Date/Time pixinvent.com
  • --}}