@extends('layouts.app') @section('title', 'Landed Costs') @section('breadcrumbs') @endsection @section('content')

Landed Costs

Calculate total landed cost for imports

New Landed Cost
@forelse($landedCosts ?? [] as $lc) @empty @endforelse
LC # Order # CIF Value Duties Other Charges Total Landed Cost Actions
{{ $lc->lc_number }} {{ $lc->importOrder->order_number ?? 'N/A' }} {{ number_format($lc->cif_value, 2) }} {{ number_format($lc->total_duties, 2) }} {{ number_format($lc->other_charges, 2) }} {{ number_format($lc->total_landed_cost, 2) }}

No landed cost records found

@endsection