@extends('dashboard.layouts.app') @section('title', __('dashboard.View Category')) @section('page_heading', __('dashboard.View Category')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Category Details') }}

ID {{ $testCategory->id }}
{{ __('dashboard.Name') }} {{ $testCategory->name }}
{{ __('dashboard.Parent Category') }} {{ $testCategory->parent ? $testCategory->parent->name : '-' }}
{{ __('dashboard.Status') }} @if($testCategory->status) {{ __('dashboard.Active') }} @else {{ __('dashboard.Inactive') }} @endif
{{ __('dashboard.Created At') }} {{ $testCategory->created_at }}
{{__('dashboard.Subcategories')}} @if ($testCategory->children->isNotEmpty()) @else - @endif
@endsection