@extends('layouts.app') @section('content')
Product List
@can('create-product') Add New Product @endcan @forelse ($products as $product) @empty @endforelse
S# Name Description Action
{{ $loop->iteration }} {{ $product->name }} {{ $product->description }}
@csrf @method('DELETE') Show @can('edit-product') Edit @endcan @can('delete-product') @endcan
No Product Found!
{{ $products->links() }}
@endsection