@extends('layouts.admin') @section('title', 'Admin | Service Category Details') @section('content')

Service Category Details

{{-- Left column: Image --}}
@if($category->image_url) {{ $category->name }} @else No Image @endif
{{-- Right column: Details --}}

{{ $category->name }}

Description:

{!! nl2br(e($category->description ?? 'No description available.')) !!}

Created At: {{ $category->created_at->format('d M Y, h:i A') }}

Updated At: {{ $category->updated_at->format('d M Y, h:i A') }}

@endsection