@extends('layouts.app') @section('content')
Invoice Number | Created at | Status | Outlet | Customer Contact | Action |
---|---|---|---|---|---|
#{{$order->order_id}} Ordering Time: {{ \Carbon\Carbon::parse($order->created_at)->diffForHumans() }} |
{{$order->created_at}} | {!! $order->dispatch_status == 0 ? '' . "Pending" . '' : '' . "Dispatching" . ''!!} | {{$order->branch}} | {{$order->customer_phone}} | Customer View Order @if(auth()->user()->role == "Call Center") @else @if($order->dispatch_status == 0) Dispatch Order @else @endif @endif |