@foreach ($inventoryVouchers as $inventoryVoucher)
@if ($pageLogo != null) Logo @endif

Stock Transfer

Company Details
Company Name : {{ $company->name }}
Mobile No : {{ $company->phone }}
Address : {{ $company->address }}
GST No : {{ $company->gst }}
Transfer Details
Source Location : {{$inventoryVoucher->sourceLocation->name }}
Destination Location : {{ $inventoryVoucher->destinationLocation->name }}
Voucher Details
Date : {{ \Carbon\Carbon::parse($inventoryVoucher->voucher_date)->format('d M Y') }}
Voucher No : {{ $inventoryVoucher->voucher_number }}
@if ($company->show_remarks && $inventoryVoucher->remarks != null)
Remarks : {{ $inventoryVoucher->remarks }}
@endif
@php $inventoryVoucherItems = \App\Models\InventoryVoucherItem::where(['inventory_voucher_id' => $inventoryVoucher->id,'flow' => 0])->get(); @endphp @foreach ($inventoryVoucherItems as $key => $item) @endforeach
SN Item Qty Unit Price Total
{{ $key + 1 }} {{ $item->stockItem->name }} {{ $item->quantity }} {{ $item->unit->symbol }} {{ $item->price }} {{ $item->total }}
Total {{ number_format($inventoryVoucherItems->sum('total'), 2) }}
@if ($inventoryVouchers->last() != $inventoryVoucher)
@endif @endforeach