@include('Commonheader', ['page_title' => 'Edit Stock Usage'])
@include('sidebar')
@include('restaurant.navbar')
Edit Stock Usage
@csrf
Item Name
*
-- Select Item --
@foreach ($items as $item)
item_name === $item->item_name ? 'selected' : '' }}> {{ $item->item_name }}
@endforeach
Quantity Used
*
Unit
@php $units = ['kg', 'gram', 'liter', 'ml', 'pcs', 'box', 'pack']; @endphp @foreach ($units as $unit)
unit === $unit ? 'selected' : '' }}> {{ ucfirst($unit) }}
@endforeach
Usage Date
Remarks
{{ $stock_usage->remarks }}
Cancel
Update Stock Usage
@include('Commonfooter')
@include('Commonscript')