{{ __('Products Management') }}

@if(session('message')) {{ session('message') }} @endif

{{__('Products List')}}

@can('product-create') {{__('Create New Product')}} @endcan
{{__('No')}} {{__('Name')}} {{__('Details')}} {{__('Action')}} @foreach ($products as $key => $product) {{ ++$i }} {{ $product->name }} {{ $product->detail }} {{__('Show')}} @can('product-edit') {{__('Edit')}} @endcan @can('product-delete')
@csrf @method('DELETE') {{__('Delete')}}
@endcan @endforeach
{!! $products->links('pagination::tailwind') !!}