@extends('admin.layout.app') @section('content')
@forelse ($products as $key => $product) @empty @endforelse
# Name Status Image Actions
{{ $key + 1 }} {{ $product->name }} {{ ucfirst($product->status) }} @if(!empty($product->image)) {{ $product->name }} @else No image @endif
@csrf @method('DELETE')
No master products found.
@if(method_exists($products, 'links'))
{{ $products->links('pagination::bootstrap-4') }}
@endif
@endsection