@foreach ($inventoryVouchers as $inventoryVoucher)
|
Company Details
Company Name : {{ $company->name }}
Mobile No : {{ $company->phone }}
Address : {{ $company->address }}
GST No : {{ $company->gst }}
|
Voucher Details
Date : {{ \Carbon\Carbon::parse($inventoryVoucher->voucher_date)->format('d M Y') }}
Voucher No : {{ $inventoryVoucher->voucher_number }}
Stock Location : {{ $inventoryVoucher->destinationLocation->name }}
@if ($company->show_remarks && $inventoryVoucher->remarks != null)
Remarks : {{ $inventoryVoucher->remarks }}
@endif
|
| SN | Item | Qty | Unit | Price | Total |
|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $item->stockItem->name }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->total }} |
| Total | {{ number_format($destinationItems->sum('total'), 2) }} | ||||