@extends('layouts.app') @section('title', 'Packing Lists') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')

Packing Lists

Manage export packing lists

New Packing List
@forelse($packingLists as $pl) @empty @endforelse
PL # Date Order # Buyer Packages Gross Weight Actions
{{ $pl->pl_number }} {{ $pl->created_at->format('d M Y') }} {{ $pl->order->order_number ?? 'N/A' }} {{ $pl->buyer->name ?? 'N/A' }} {{ $pl->total_packages ?? 0 }} {{ number_format($pl->gross_weight ?? 0, 3) }} MT

No packing lists

@endsection @push('scripts') @endpush