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

STOCK JOURNAL DETAILS

Go Back
VOUCHER TYPE

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

VOUCHER NUMBER

{{ $inventoryVoucher->voucher_number }}

VOUCHER DATE

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

REMARKS

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

SOURCE

@foreach ($sourceItems as $item) @endforeach
Location Item Qty Unit Price Total
{{ $item->stockLocation->name }} {{ $item->stockItem->name }} {{ $item->quantity }} {{ $item->unit->symbol }} {{ $item->price }} {{ $item->total }}

DESTINATION

@foreach ($destinationItems as $item) @endforeach
Location Item Qty Unit Price Total
{{ $item->stockLocation->name }} {{ $item->stockItem->name }} {{ $item->quantity }} {{ $item->unit->symbol }} {{ $item->price }} {{ $item->total }}
@endsection @section('script') @endsection