@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Products'])
List of Products
@foreach($products as $product) @endforeach
SKU Product Description Category Brand Size Actions

{{$product->sku_code}}

{{$product->sku_description}}

{{$product->category->category_name}}

{{$product->brand->brand_name}}

{{$product->size}}

@can('product edit') @endcan @can('product delete') @endcan
@include('layouts.footers.auth.footer')
@endsection