Products > Products List

@if(Session::has('message')) @endif

Products List

@foreach($products as $key=>$row) @endforeach
ID Name Purchase Price Sale Price Category Unit Status Actions
{{$key+1}} {{$row->name}} {{$row->purchase_price}} {{$row->sales_price}} {{$row->category}} {{$row->unit}} {{$row->status}} Edit {!! Form::open(array('route' => array('products.destroy', $row->id), 'method' => 'delete','style' => 'display:inline')) !!} {!! Form::close() !!}