@extends('admin.layouts.app') @section('content')
@if($products->isEmpty()) @else @php $counter = ($products->currentPage() - 1) * $products->perPage() + 1; @endphp @foreach($products as $product) @php $counter++; @endphp @endforeach @endif
Product ID Product Name Product Price Created At Control

There are no products to be shown

{{$counter}} {{$product->product_name}} {{$product->price}} {{$product->created_at->format('d / m / Y') }}
@csrf @method('DELETE') Edit Show
{{ $products->onEachSide(5)->links() }}
@endsection