@include('Admin.Includes.header') @php use Illuminate\Support\Facades\Auth; $logged_in_user = Auth::user(); @endphp

{{ __('Blog Categories') }}

@if (session('success')) @endif @if ($errors->any()) @endif
Create Blog Category
@csrf
Please enter a category title.
This will be auto-generated from the title
Blog Category Table
@foreach ($categories as $category) @endforeach
Title Description Status Actions
{{ strtoupper(substr($category->title, 0, 1)) }}
{{ $category->title }}
{{ Str::limit($category->description, 50) }} @if ($category->is_active) Active @else Inactive @endif
{{-- Delete Confirmation Modal --}}