@extends('layouts.master') @push('css') @endpush @section('content')
| Date | SP # | Bill # | Vehicle # | Party | Expense A/C | Narration | Qty | Unit | Price | Amount |
|---|---|---|---|---|---|---|---|---|---|---|
| Party: {{ strtoupper($get($party, 'party_name')) }} | ||||||||||
| {{ \Carbon\Carbon::parse($get($bill, 'date'))->format('d/m/y') }} | {{ $get($bill, 'voucher_no') }} | {{ $get($bill, 'bill_no') }} | {{ $get($vehicle, 'truck_no') }} | {{ strtoupper($get($bill, 'party_name')) }} | @endif{{ $get($item, 'expense_account_name', 'LABOUR') }} | {{ $get($item, 'narration') }} | {{ $fmt($get($item, 'qty', 0)) }} | {{ $get($item, 'unit', 'Kgs') }} | {{ number_format($get($item, 'price', 0), 1) }} | {{ $fmt($get($item, 'amount', 0)) }} |
| {{ \Carbon\Carbon::parse($get($bill, 'date'))->format('d/m/y') }} | {{ $get($bill, 'voucher_no') }} | {{ $get($bill, 'bill_no') }} | {{ $get($vehicle, 'truck_no') }} | {{ strtoupper($get($bill, 'party_name')) }} | — | |||||
| Vehicle {{ $get($vehicle, 'truck_no') }} — Total | {{ number_format($get($vehicle, 'vehicleTotals')['total_qty'] ?? 0, 3) }} | {{ $fmt($get($vehicle, 'vehicleTotals')['total_amount'] ?? 0) }} | ||||||||
| GRAND TOTAL | {{ number_format($grandTotal['total_qty'] ?? 0, 3) }} | {{ $fmt($grandTotal['total_amount'] ?? 0) }} | ||||||||