@extends('layouts.master') @section('css') @endsection @section('title') Stock Transfer @endsection @section('content')

STOCK TRANSFER DETAILS

Company

{{ $company->name }}

Mobile No : {{ $company->phone }}

Address : {{ $company->address }}

GST No : {{ $company->gst }}

VOUCHER TYPE

{{ $inventoryVoucher->voucherType->name }}

VOUCHER NUMBER

{{ $inventoryVoucher->voucher_number }}

VOUCHER DATE

{{ \Carbon\Carbon::parse($inventoryVoucher->voucher_date)->format('d M Y') }}

SOURCE LOCATION

{{ $inventoryVoucher->sourceLocation->name }}

DESTINATION LOCATION

{{ $inventoryVoucher->destinationLocation->name }}

REMARKS

{{ $inventoryVoucher->remarks ?? '--' }}

Items

@foreach ($sourceItems as $item) @endforeach
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') }}
@endsection @section('script') @endsection