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

There are no categories to be shown

{{$counter}} {{$category->name}} {{$category->created_at->format('d / m / Y') }}
@csrf @method('DELETE') Edit {{-- Show--}}
{{ $categories->onEachSide(5)->links() }}
@endsection