@extends('admin.layouts.dashboard')
@section('title', 'Block Categories')
@section('content')
{{-- Header --}}
Block Categories
+ Add Category
{{-- Alerts --}}
@if(session('success'))
{{ session('success') }}
@endif
{{-- Filter --}}
{{-- Table --}}
| # |
Category Name |
Actions |
@forelse($categories as $cat)
| {{ $categories->firstItem() + $loop->index }} |
{{ $cat->name }} |
|
@empty
|
No categories found.
Add one
|
@endforelse
{{-- Pagination --}}
@endsection