@extends('admin.layouts.dashboard') @section('title', 'Block Categories') @section('content')
{{-- Header --}}

Block Categories

+ Add Category
{{-- Alerts --}} @if(session('success')) @endif {{-- Filter --}}
@if(request('search')) Clear @endif
{{-- Table --}}
@forelse($categories as $cat) @empty @endforelse
# Category Name Actions
{{ $categories->firstItem() + $loop->index }} {{ $cat->name }}
Edit
@csrf @method('DELETE')
No categories found. Add one
{{-- Pagination --}}
{{ $categories->onEachSide(1)->links() }}
@endsection