@extends('layouts.app') @section('title', 'Bills of Entry') @section('breadcrumb') @endsection @section('content')

Bills of Entry

Customs declarations for import clearance

New Bill of Entry
BOE No.BOE TypeImport OrderSupplierCIF ValueDuty AmountAssessment StatusClearance StatusActions @foreach($billsOfEntry ?? [] as $boe) {{ $boe->boe_number }} {{ $boe->boe_type }} {{ $boe->order->order_number ?? '-' }} {{ $boe->supplier->name ?? '-' }} ₹{{ number_format($boe->cif_value ?? 0) }} ₹{{ number_format($boe->duty_amount ?? 0) }}
@empty

No bills of entry found

@endforeach
@endsection