@extends('app') @section('content') Add Inventory Item Home Item Add Item {{csrf_field()}} Name Code Price Unit {!! Form::select('unit_id', $units ,old('unit_id'), ['class'=> 'form-control']) !!} Alert Quantity Note {{old('note')}} Submit S/N Name Code Price Status Action @forelse($items as $item) {{$loop->index+1}} {{$item->name}} {{$item->code}} {{$item->price}} @if($item->status==1) Active @else Disabled @endif @empty No Records @endforelse @endsection @section('script') @endsection
No Records