@extends('layouts.master') @section('css') @endsection @section('title') Stock Journal @endsection @section('content')
{{ $inventoryVoucher->voucherType->name }}
{{ $inventoryVoucher->voucher_number }}
{{ \Carbon\Carbon::parse($inventoryVoucher->voucher_date)->format('d M Y') }}
{{ $inventoryVoucher->remarks ?? '--' }}
| Location | Item | Qty | Unit | Price | Total |
|---|---|---|---|---|---|
| {{ $item->stockLocation->name }} | {{ $item->stockItem->name }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->total }} |
| Location | Item | Qty | Unit | Price | Total |
|---|---|---|---|---|---|
| {{ $item->stockLocation->name }} | {{ $item->stockItem->name }} | {{ $item->quantity }} | {{ $item->unit->symbol }} | {{ $item->price }} | {{ $item->total }} |