@extends('layouts.app') @section('title', 'Products') @section('heading', 'Products') @section('content')
@can('create', App\Models\Product::class)
Add product
@endcan @if($products->isEmpty())

No products yet.

@can('create', App\Models\Product::class) Add your first product @endcan
@else @php $columns = ['name' => 'Name', 'sku' => 'SKU', 'price' => 'Price', 'status' => 'Status', 'file' => 'File']; @endphp
{{ $products->links() }}
@endif
@endsection