@extends('layouts.master') @section('css') @endsection @section('title') Stock Transfer @endsection @section('content')
{{ $company->name }}
Mobile No : {{ $company->phone }}
Address : {{ $company->address }}
GST No : {{ $company->gst }}
{{ $inventoryVoucher->voucherType->name }}
{{ $inventoryVoucher->voucher_number }}
{{ \Carbon\Carbon::parse($inventoryVoucher->voucher_date)->format('d M Y') }}
{{ $inventoryVoucher->sourceLocation->name }}
{{ $inventoryVoucher->destinationLocation->name }}
{{ $inventoryVoucher->remarks ?? '--' }}
| Item | Internal Barcode |
Qty | Unit | Price | Total |
|---|---|---|---|---|---|
| {{ $item->stockItem->name }} | {{ $item->stockItem->internal_barcode ?? '--' }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->total }} | Total | {{ $sourceItems->sum('total') }} |