@extends('app') @section('content')

Add Inventory Item

{{csrf_field()}}
{!! Form::select('unit_id', $units ,old('unit_id'), ['class'=> 'form-control']) !!}
@forelse($items as $item) @empty

No Records

@endforelse
S/N Name Code Price Status Action
{{$loop->index+1}} {{$item->name}} {{$item->code}} {{$item->price}} @if($item->status==1) @else @endif
@endsection @section('script') @endsection