@extends('layouts.app') @section('content')
Category Details
Name:
{{ $category->name }}
Short Code:
{{ $category->short_code ?? 'N/A' }}
Parent Category:
{{ $category->parent ? $category->parent->name : 'None' }}

Sub Categories
@foreach($category->children as $child) @endforeach
Name Short Code
{{ $child->name }} {{ $child->short_code ?? 'N/A' }}
@endsection