@extends('layouts.app') @section('title', 'Bills of Lading') @push('styles') @endpush @section('breadcrumbs') @endsection @section('content')

Bills of Lading

Manage export bills of lading

New BL
@forelse($bills as $bl) @empty @endforelse
BL #DateOrder #ShipperConsigneeVesselStatusActions
{{ $bl->bl_number }} {{ $bl->created_at->format('d M Y') }} {{ $bl->order->order_number ?? 'N/A' }} {{ $bl->shipper->name ?? 'N/A' }} {{ $bl->consignee->name ?? 'N/A' }} {{ $bl->vessel_name ?? 'TBD' }} {{ ucfirst($bl->status) }}

No bills of lading

@endsection @push('scripts') @endpush