@extends('layouts.mop_master') @section('css') @endsection @section('title') Order @endsection @section('content')
{{ $order->order_code }}
{{ \Carbon\Carbon::parse($order->order_date)->format('d M Y') }}
{{ $order->debitLedger?->name }}
{{ $order->production_date ? \Carbon\Carbon::parse($order->production_date)->format('d M Y') : '--' }}
{{ $order->delivery_date ? \Carbon\Carbon::parse($order->delivery_date)->format('d M Y') : '--' }}
{{ $order->remarks ?? '--' }}
| Item | Qty | Unit | Remarks |
|---|---|---|---|
| {{ $item->stockItem->name }}@if ($item->variant_id != null)
({{ $item->variant->name }}) @endif @if ($item->getFirstMedia('image') != null) @endif |
{{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->remarks }} |