@include('Commonheader', ['page_title' => 'Edit Stock'])
@include('sidebar')
@include('restaurant.navbar')
Edit Kitchen Inventory Stock
@csrf @method('POST')
Item Name
Quantity Received
Unit
@php $units = ['kg', 'gram', 'liter', 'ml', 'pcs', 'box', 'pack']; @endphp @foreach ($units as $unit)
unit === $unit ? 'selected' : '' }}> {{ ucfirst($unit) }}
@endforeach
Received Date
Remarks
{{ $stock->remarks }}
Back to Stock List
Update Stock
@include('Commonfooter')
@include('Commonscript')