49 lines
1.8 KiB
PHP
49 lines
1.8 KiB
PHP
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<title>Invoices Report</title>
|
||
|
|
<style>
|
||
|
|
body { font-family: DejaVu Sans, sans-serif; font-size: 12px; }
|
||
|
|
table { width: 100%; border-collapse: collapse; margin-top: 10px; }
|
||
|
|
th, td { border: 1px solid #ccc; padding: 6px 8px; text-align: left; }
|
||
|
|
th { background: #f3f4f6; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h3>Invoices Report</h3>
|
||
|
|
<table>
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th>Invoice No</th>
|
||
|
|
<th>Invoice Date</th>
|
||
|
|
<th>Mark No</th>
|
||
|
|
<th>Container No</th>
|
||
|
|
<th>Container Date</th>
|
||
|
|
<th>Company</th>
|
||
|
|
<th>Customer</th>
|
||
|
|
<th>Amount</th>
|
||
|
|
<th>Amount + GST</th>
|
||
|
|
<th>Status</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
@foreach($invoices as $inv)
|
||
|
|
<tr>
|
||
|
|
<td>{{ $inv->invoice_number ?? '-' }}</td>
|
||
|
|
<td>{{ $inv->invoice_date ? \Carbon\Carbon::parse($inv->invoice_date)->format('d-m-Y') : '-' }}</td>
|
||
|
|
<td>{{ $inv->mark_no ?? '-' }}</td>
|
||
|
|
<td>{{ $inv->container_number ?? '-' }}</td>
|
||
|
|
<td>{{ $inv->container_date ? \Carbon\Carbon::parse($inv->container_date)->format('d-m-Y') : '-' }}</td>
|
||
|
|
<td>{{ $inv->company_name ?? '-' }}</td>
|
||
|
|
<td>{{ $inv->customer_name ?? '-' }}</td>
|
||
|
|
<td>{{ $inv->final_amount ? number_format($inv->final_amount, 2) : '0.00' }}</td>
|
||
|
|
<td>{{ $inv->final_amount_with_gst ? number_format($inv->final_amount_with_gst, 2) : '0.00' }}</td>
|
||
|
|
<td>{{ ucfirst($inv->invoice_status ?? 'pending') }}</td>
|
||
|
|
</tr>
|
||
|
|
@endforeach
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</body>
|
||
|
|
</html>
|