@include('Commonheader', ['page_title' => 'Add Stock Usage'])
@include('sidebar')
@include('restaurant.navbar')
Add Stock Usage
@csrf
Item Name
*
-- Select Item --
@foreach ($items as $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)
{{ ucfirst($unit) }}
@endforeach
Usage Date
Remarks
{{ old('remarks') }}
Back to Stock Usage
Add Stock Usage
@include('Commonfooter')
@include('Commonscript')