Category Details

View category information and related items

Category Information
Name: {{ $category->name }}
ID: {{ $category->id }}
Created: {{ $category->created_at ? $category->created_at->format('d/m/Y H:i') : 'N/A' }}
Updated: {{ $category->updated_at ? $category->updated_at->format('d/m/Y H:i') : 'N/A' }}
Description

{{ $category->description ?: 'No description available for this category.' }}

Related Items ({{ $category->items->count() }})
@if($category->items->count() > 0)
@foreach($category->items as $item) @endforeach
Item Stock Expiry Date Location
{{ $item->name }}

{{ $item->description ?: 'No description' }}

{{ $item->stock }} @if($item->expired_at) {{ $item->expired_at->format('d/m/Y') }} @else No expiry @endif {{ $item->distribution ?: 'Not specified' }}
@else
No items in this category

Items assigned to this category will appear here

@endif