@extends('sysadmin.layouts.app') @section('post-header')
{{ csrf_field() }}
{{--
--}} {{--
--}} {{----}} {{----}} {{--
--}} {{--
--}}
to
@endsection @section('custom-css') @endsection @section('content')
@if(count($orders) !=0) @foreach($orders as $key =>$order)

{{$order->orderID}}. {{$order->restaurantName}}

{{--
--}} {{-- 1 Year--}} {{-- 50--}} {{-- 500--}} {{--
--}}

@if($order->courierUser->transportType == 0) Bicycle @elseif ($order->courierUser->transportType == 1) Motocycle @else Auto @endif

Courier Name: {{$order->courierUser->name}}

Status:

Date: {{$order->date}}

{{--

Address:

--}}

Total Order: {{$order->total}} L

Transport Cost: {{$order->transportCost}} L

Address: {{$order->address}}

{{----}}

@endforeach @else
No orders found from this request! Try again...
@endif
@endsection @section('custom-js') @endsection