@extends('layouts.app', ['page' => __('Products'), 'pageSlug' => 'products']) @section('content')

Products

@if(session('success')) @endif
@if (auth::user()->role == 0) @endif @foreach($products as $product) @if (auth::user()->role == 0) @endif @endforeach
Product Name Category SubCategory Price Description CGST SGST IGST ImageAction
{{$product->productname}} {{$product->category}} {{$product->subcategory}} {{$product->price}} {{$product->description}} {{$product->cgst}} {{$product->sgst}} {{$product->igst}}
@endsection