@if(count($errors))
Whoops! Error occured
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ $errors->first('name') }}
Maange products:
@if($products->count()) @foreach($products as $key => $product) @endforeach @else @endif
#Id Name Inv Code Keyword Brand Category
{{ ++$key }} {{ $product->name }} {{ $product->inv_code }} {{ $product->keyword }} {{ $product->brand }} {{ $product->category }}
There are no data.
{{ $products->links() }}