@extends("layouts.app") @section("title", "Category show") @section("content")
| 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') }} |