@extends('admin.layouts.app') @section('title', 'View Subcategory') @section('page-title', 'View Subcategory') @section('content')

{{ $subcategory->name }}

Subcategory Information

Name (Khmer)
{{ $subcategory->name_km ?? 'N/A' }}
Code
{{ $subcategory->code }}
@if($subcategory->parent)
Parent Category
{{ $subcategory->parent->name }}
@endif
Products
{{ $subcategory->products->count() }}

Description

{{ $subcategory->description ?? 'No description' }}

Description (Khmer)

{{ $subcategory->description_km ?? 'No description' }}

@if($subcategory->image)

Image

{{ $subcategory->name }}
@endif
@endsection