@extends('layouts.app') @section('content')
@component('components.breadcrumb', [ 'links' => [ ['name' => 'Manage Categories', 'url' => ''], ['name' => 'Categories', 'url' => route('categories.index')], ['name' => 'Category Details', 'url' => ''], ], ]) @endcomponent Back
@include('layouts.partials.toast')
  • Name: {{ $category->name }}
  • Description: {{ $category->description ?? null }}
  • Image: @if ($category->image_path) {{ $category->name }} Image @else {{ $category->name }} Image @endif
  • Status: {{ $category->is_active ? 'Active' : 'Deactivated' }}
@endsection