|
{{-- Company Name + Subtitle + Tagline --}}
KENT
International Pvt. Ltd.
Address Line 1, City, State – Pincode |
Email: info@company.com |
Phone: +91 1234567890
|
|
Customer Details
@if($companyName)
{{ $companyName }}
{{ $custName }}
@else
{{ $custName }}
@endif
@if($custAddress){{ $custAddress }} @endif
@if($custPincode){{ $custPincode }} @endif
@if($custEmail)Email: {{ $custEmail }} @endif
@if($custMobile)Phone: {{ $custMobile }} @endif
|
Invoice Details
Invoice #: {{ $invoice->invoice_number }}
Date: {{ \Carbon\Carbon::parse($invoice->invoice_date)->format('d M, Y') }}
Due Date: {{ \Carbon\Carbon::parse($invoice->due_date)->format('d M, Y') }}
Status:
{{ strtoupper($invoice->status) }}
GST Type: {{ strtoupper($invoice->tax_type ?? 'GST') }}
GST %: {{ number_format($invoice->gst_percent ?? 0, 2) }}%
|
|
Container Name
{{ $invoice->container->container_name ?? '—' }}
|
Container Date
@if($invoice->container && $invoice->container->container_date)
{{ \Carbon\Carbon::parse($invoice->container->container_date)->format('d M, Y') }}
@else—@endif
|
Container No.
{{ $invoice->container->container_number ?? '—' }}
|
Total Mark No.
{{ $totalMarkCount }}
Unique marks
|
|
Total CTN
{{ number_format($totalCtn, 0) }}
Cartons
|
Total QTY
{{ number_format($totalQty, 0) }}
Pieces
|
Total CBM
{{ number_format($totalCbm, 3) }}
Cubic Meter
|
Total KG
{{ number_format($totalKg, 2) }}
Kilograms
|
| Group Name | Basis | Basis Value | Rate | Total Charge | GST % | Tax Type | Total With GST |
|---|---|---|---|---|---|---|---|
| {{ $group->group_name ?? 'Group '.$group->id }} | {{ strtoupper($group->basis_type) }} | {{ number_format($group->basis_value, 3) }} | {{ number_format($group->rate, 2) }} | ₹{{ number_format($group->total_charge, 2) }} | {{ number_format($group->gst_percent ?? 0, 2) }}% | {{ strtoupper($group->tax_type ?? 'GST') }} | ₹{{ number_format($group->total_with_gst, 2) }} |
| # | Description | Mark No | QTY | TTL QTY | CBM | TTL CBM | KG | TTL KG | TTL Amt | Rate | Total Charge | GST % | Item GST | Item Total |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item->description }} | {{ $item->mark_no ?? '—' }} | {{ $item->qty ?? 0 }} | {{ number_format($item->ttl_qty ?? 0, 0) }} | {{ number_format($item->cbm ?? 0, 3) }} | {{ number_format($item->ttl_cbm ?? 0, 3) }} | {{ number_format($item->kg ?? 0, 2) }} | {{ number_format($item->ttl_kg ?? 0, 2) }} | ₹{{ number_format($item->ttl_amount ?? 0, 2) }} | {{ number_format($group->rate, 2) }} | ₹{{ number_format($itemCharge, 2) }} | {{ number_format($gstPct, 2) }}% | ₹{{ number_format($itemGst, 2) }} | ₹{{ number_format($itemTotal, 2) }} |
|
| # | Date | Payment Method | Reference No | Amount (₹) |
|---|---|---|---|---|
| {{ $idx + 1 }} | {{ \Carbon\Carbon::parse($inst->installment_date)->format('d M, Y') }} | {{ strtoupper($inst->payment_method) }} | {{ $inst->reference_no ?? '—' }} | ₹{{ number_format($inst->amount, 2) }} |
|