{{ csrf_field() }} @if($orders) @foreach($orders as $o) @endforeach @endif
Order # Type PO # Client Ship from Ship to Pickup Date Total Created By Dispatcher Actions
@if(!$o->carrier_id) @if(($o->dat) && ($o->truckstop)) @elseif($o->dat) @elseif($o->truckstop) @endif @if($o->bid)
@endif @endif {{ $o->id }}
@if($o->carrier_id){{ 'SHIPMENT' }}@else{{ 'ORDER' }}@endif {{ poNumbers($o->reference_numbers) }} {{ $o->client_name }} {{ $o->shipfrom_address.', '.$o->shipfrom_city.', '.$o->shipfrom_state.' '.$o->shipfrom_zip }} {{ $o->shipto_address.', '.$o->shipto_city.', '.$o->shipto_state.' '.$o->shipto_zip }} {{ ($o->requested_pickup_date ? date('m/d/Y', strtotime($o->requested_pickup_date)) : null) }} {{ $o->total_charge }} @if($o->added_id && ($o->added_by == 'ADMIN')) @if(isset($users[$o->added_id])) {{ $users[$o->added_id] }} @endif @endif @if(isset($users[$o->shipment_user_id])) {{ $users[$o->shipment_user_id] }} @endif @if($isUserSuperAdmin) @endif @if($o->carrier_id) @if(app('App\Repositories\SmsNotificationRepository')->checkOrderNotification($o->id)) @endif @if($o->rc_unique) @if(is_null($o->rc_status)) @endif @endif @if($o->concern) @endif @endif
ADD ORDER