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

Shipping Instructions

Manage shipping instruction documents

New SI
@forelse($instructions as $si) @empty @endforelse
SI # Order # Shipper Consignee Port of Loading Status Actions
{{ $si->si_number }} {{ $si->order->order_number ?? 'N/A' }} {{ $si->shipper->name ?? 'N/A' }} {{ $si->consignee->name ?? 'N/A' }} {{ $si->portOfLoading->name ?? 'N/A' }} {{ ucfirst($si->status) }}

No shipping instructions

@endsection @push('scripts') @endpush