@extends('layouts.dashboard') @section('title', 'Sales Orders') @section('page-title', 'Sales Orders') @section('breadcrumb')
| SO No | Uploaded Date | Packing Date | Actions | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $row->so_no }} | {{ $row->uploaded_at ? \Carbon\Carbon::parse($row->uploaded_at)->format('M d, Y') : '' }} | {{ $packingDate ? \Carbon\Carbon::parse($packingDate)->format('M d, Y') : '' }} | |||||||||||||||||||
|
{{-- Sales Order Items --}}
Sales Order Items@if($salesOrdersBySo[$row->so_no] ?? false)
No sales order items found.
@endif
Picking Details@if($pickingsBySo[$row->so_no] ?? false)
No picking data found.
@endif
|
|||||||||||||||||||||