@extends('layouts.app') @section('title', 'SI #'.optional($si)->si_number) @section('breadcrumbs') @endsection @section('content')
Shipping Instruction
| Loading Port | {{ $si->portOfLoading->name ?? 'N/A' }} |
| Discharge Port | {{ $si->portOfDischarge->name ?? 'N/A' }} |
| Vessel | {{ $si->vessel_name ?? 'TBD' }} V.{{ $si->voyage_number ?? '' }} |
| SI # | {{ $si->si_number }} |
| Date | {{ $si->date?->format('d M Y') ?? 'N/A' }} |
| Type | {{ ucfirst($si->si_type ?? 'Direct') }} |
| BL Type | {{ ucfirst(str_replace('_', ' ', $si->bl_type ?? '')) }} |
| Status | {{ ucfirst($si->status) }} |
| Order | {{ $si->order->order_number ?? 'N/A' }} |