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