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

STOCK ENTRY 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') }}

STOCK LOCATION

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

REMARKS

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

Items

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