@extends('layouts.app') @section('title', 'Bill of Entry ' . ($boe->boe_number ?? '')) @section('breadcrumb')
{{ $boe->boe_type ?? 'Home Consumption' }} | {{ $boe->customs_port ?? 'JNPT' }} | Filed: {{ ($boe->created_at ?? now())->format('d M Y') }}
| # | Description | HS Code | Qty | Unit | FOB | Freight | Insurance | CIF |
|---|---|---|---|---|---|---|---|---|
| {{ $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 }}
Rate: {{ $details['rate'] }}| Type | Date | Officer | Result | Remarks |
|---|---|---|---|---|
| {{ $insp['type'] }} | {{ $insp['date'] }} | {{ $insp['officer'] }} | {{ $insp['remarks'] }} |