@extends('layouts.app') @section('title', 'Bill of Entry ' . ($boe->boe_number ?? '')) @section('breadcrumb') @endsection @section('content')

{{ $boe->boe_number ?? 'BOE-2026-0891' }}

{{ $boe->boe_type ?? 'Home Consumption' }} | {{ $boe->customs_port ?? 'JNPT' }} | Filed: {{ ($boe->created_at ?? now())->format('d M Y') }}

Edit
Importer Details
@foreach(['IEC' => $boe->iec_number ?? '0123456789', 'Name' => $boe->importer_name ?? 'ABC Enterprises Pvt. Ltd.', 'GSTIN' => $boe->gstin ?? '27AABCA1234C1ZP', 'Address' => $boe->importer_address ?? 'Mumbai, Maharashtra', 'PAN' => $boe->pan_number ?? 'AABCA1234C'] as $k => $v)
{{ $k }}{{ $v }}
@endforeach
Shipment Details
@foreach(['B/L No.' => $boe->bl_number ?? 'MSCU1234567', 'Container' => $boe->container_number ?? 'MSKU7234180', 'Vessel' => $boe->vessel_name ?? 'MSC Diana', 'Port of Loading' => $boe->port_of_loading ?? 'Shanghai', 'Date of Arrival' => ($boe->date_of_arrival ?? now()->subDays(3))->format('d M Y'), 'Customs Port' => $boe->customs_port ?? 'JNPT'] as $k => $v)
{{ $k }}{{ $v }}
@endforeach
@foreach($boe->items ?? [] as $i => $item) @endforeach
#DescriptionHS CodeQtyUnitFOBFreightInsuranceCIF
{{ $i+1 }}{{ $item['description'] }}{{ $item['hs_code'] }}{{ number_format($item['qty']) }}{{ $item['unit'] }}USD {{ number_format($item['fob'] ?? 0, 2) }}USD {{ number_format($item['freight'] ?? 0, 2) }}USD {{ number_format($item['insurance'] ?? 0, 2) }}USD {{ number_format($item['cif'] ?? 0, 2) }}
Duty Breakdown
@php $duties = ['Basic Customs Duty (BCD)' => ['rate' => '10%', 'amount' => '₹11,30,625'], 'Social Welfare Surcharge' => ['rate' => '10% on BCD', 'amount' => '₹1,13,063'], 'IGST' => ['rate' => '18%', 'amount' => '₹2,42,288'], 'Compensation Cess' => ['rate' => '0%', 'amount' => '₹0'], 'Anti-dumping Duty' => ['rate' => 'NIL', 'amount' => '₹0'], 'Safeguard Duty' => ['rate' => 'NIL', 'amount' => '₹0']]; @endphp @foreach($duties as $duty => $details)

{{ $duty }}

Rate: {{ $details['rate'] }}
{{ $details['amount'] }}
@endforeach
Total Duty ₹14,85,976
Landed Cost Summary
@foreach(['CIF Value (₹)' => '₹94,75,000', 'Customs Duty' => '₹14,85,976', 'Customs Handling' => '₹25,000', 'Port Charges' => '₹18,500', 'CHA Fees' => '₹15,000', 'Total Landed Cost' => '₹1,12,19,476'] as $k => $v)
{{ $k }}{{ $v }}
@endforeach
Inspections
Add Inspection
@foreach($boe->inspections ?? [['type' => 'Customs Examination', 'date' => '17 Feb 2026', 'officer' => 'Superintendent Rajesh Kumar', 'result' => 'cleared', 'remarks' => 'Goods found matching with declaration']] as $insp) @endforeach
TypeDateOfficerResultRemarks
{{ $insp['type'] }}{{ $insp['date'] }}{{ $insp['officer'] }}{{ $insp['remarks'] }}
Supporting Documents
@foreach(['Bill of Lading|PDF|245 KB','Commercial Invoice|PDF|128 KB','Packing List|PDF|98 KB','Certificate of Origin|PDF|85 KB','Insurance Certificate|PDF|156 KB','Customs Declaration|PDF|312 KB'] as $doc) @php [$n,$t,$s] = explode('|',$doc); @endphp

{{ $n }}

{{ $t }} | {{ $s }}
@endforeach
@endsection