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

Inventory Item Stock

@forelse($items as $item) @empty

No Records

@endforelse
S/N Name Code Quantity Status
{{$loop->index+1}} {{$item['name']}} {{$item['code']}} {{$item['quantity']}} @if($item['quantity']>0) @else @endif
@endsection @section('extra-css') {{Html::style('assets/bower_components/datatables.net/buttons/css/buttons.dataTables.min.css')}} @stop @section('extra-js') @stop