@extends("layouts.app") @section("title", "Category show") @section("content")
Category Details
{{ $category->name }}
Name {{ $category->name }}
Parent Category @if($category->parent) {{ $category->parent->name }} @else None (Root Category) @endif
Status @if($category->status) Active @else Inactive @endif
Created At {{ $category->created_at->format('M d, Y h:i A') }}
{{ $category->description ?: 'No description provided.' }}
@endsection