@extends('layouts.app') @section('content')
Invoice Number | Customer Contact | Outlet | Total Cost | Delivery Fee | Rider Name | Rider Contact | Dispatch Time | @if(auth()->user()->role == "Dispatch Manager")Action | @endif
---|---|---|---|---|---|---|---|---|
#{{$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 . ''!!} | @if(auth()->user()->role == "Dispatch Manager")Complete Reject | @endif