@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)
@else
@endif
- Status: {{ $category->is_active ? 'Active' : 'Deactivated' }}