Name:
{{ $category->name }}
Short Code:
{{ $category->short_code ?? 'N/A' }}
Parent Category:
{{ $category->parent ? $category->parent->name : 'None' }}
Sub Categories
| Name |
Short Code |
@foreach($category->children as $child)
| {{ $child->name }} |
{{ $child->short_code ?? 'N/A' }} |
@endforeach