@foreach($orders as $order)
@endforeach
{{ __('Order Date / No')}} |
{{ __('Client Name')}} |
{{ __('Order Name')}} |
{{ __('Action')}} |
{{ isset($order->created_at) ? \Carbon\Carbon::parse($order->created_at)->format('d M Y') :'' }} / #{{ isset($order->id) ? $order->id :'' }} |
{{ isset($order->clientdetail->name) ? $order->clientdetail->name :'' }} |
{{ isset($order->name) ? $order->name :'' }} |
{{-- --}}
|