@extends('admin.layouts.app') @include('admin.nav') @section('main')
@forelse ($categories as $cat) @empty No categories @endforelse
S No. Name No. of Blog Parent Category Status Action
{{ $cat->id }} {{ $cat->name }} {{ $cat->blogs_count }} {{ @$cat->parent->name ?? 'N/A' }} {{ $cat->status === 1 ? 'Active' : 'Not Active' }}
@csrf @method('DELETE')
@endsection @section('pageJs') @endsection