| {{ $inv->invoice_number ?? '-' }} |
{{ $inv->invoice_date ? \Carbon\Carbon::parse($inv->invoice_date)->format('d-m-Y') : '-' }} |
{{ $inv->mark_no ?? '-' }} |
{{ $inv->container_number ?? '-' }} |
{{ $inv->container_date ? \Carbon\Carbon::parse($inv->container_date)->format('d-m-Y') : '-' }} |
{{ $inv->company_name ?? '-' }} |
{{ $inv->customer_name ?? '-' }} |
{{ $inv->final_amount ? '₹'.number_format($inv->final_amount, 2) : '-' }} |
{{ $inv->final_amount_with_gst ? '₹'.number_format($inv->final_amount_with_gst, 2) : '-' }} |
@php
$status = strtolower($inv->invoice_status ?? 'pending');
@endphp
{{ ucfirst($status) }}
|
@endforeach