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