@extends('layouts.admin') @section('title') Admin | Product Category Details @endsection @section('content')
@endif
Slug: {{ $category->slug }}
--}} {{-- @if($category->parent)Parent Category: {{ $category->parent->name }}
@elseParent Category: None
@endif --}}Description:
{!! nl2br(e($category->description ?? 'No description available.')) !!}
{{--Status: @if($category->is_active) Active @else Inactive @endif
--}} {{--Sort Order: {{ $category->sort_order ?? 0 }}
--}}Created At: {{ $category->created_at->format('d M Y, h:i A') }}
Updated At: {{ $category->updated_at->format('d M Y, h:i A') }}