@extends('inventory.layout') @section('title', 'Orders') @section('content') @push('head') @endpush
{{ __('Order Date / No')}} @foreach($orders as $order) {{ isset($order->created_at) ? \Carbon\Carbon::parse($order->created_at)->format('d M Y') :'' }} / #{{ isset($order->id) ? $order->id :'' }} @endforeach |
{{ __('Client Name')}} @foreach($orders as $order) {{ isset($order->clientdetail->name) ? $order->clientdetail->name :'' }} @endforeach |
{{ __('Contact Person')}} @foreach($orders as $order) {{ isset($order->contactPerson) ? $order->contactPerson :'' }} @endforeach |
{{ __('Address')}} @foreach($orders as $order) {{ isset($order->Address) ? $order->Address :'' }} @endforeach |
{{--{{ __('Status')}} | --}} {{--{{ __('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->contactPerson) ? $order->contactPerson :'' }} | {{ isset($order->Address) ? $order->Address :'' }} | --}}
|
{{-- --}} |