@extends('layouts.app') @section('content')
Dispatching Orders
@if(auth()->user()->role == "Dispatch Manager") Report @else Report @endif
@if(auth()->user()->role == "Dispatch Manager") @endif @foreach($process as $order) @if(auth()->user()->role == "Dispatch Manager") @endif @endforeach
Invoice Number Customer Contact Outlet Total Cost Delivery Fee Rider Name Rider Contact Dispatch
Time
Action
#{{$order->order_number}}
Ordered Time: {{$order->ordered_at}}
{{$order->customer_phone}} {{$order->dispatch_branch}} {{empty($app->currency) ? "GHS" : $app->currency}}@convert($order->amount) {{empty($app->currency) ? "GHS" : $app->currency}}@convert($order->deliveryamount) {{$order->rd_name}} {!! strstr($order->rd_name, "PICK") == true ? ''. "No Contact" .'' : $order->rd_phone !!} {!! empty($order->dispatched_at) ? ''. "Processing" .'' : '' . $order->dispatched_at . ''!!} Complete Reject
@endsection