@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
| {{ __('ID') }} |
{{ __('Name') }} |
{{ __('Slug') }} |
{{ __('Status') }} |
{{ __('Blogs Count') }} |
{{ __('Created') }} |
{{ __('Actions') }} |
@forelse($categories as $category)
| {{ $category->id }} |
{{ $category->name }}
@if($category->description)
{{ Str::limit($category->description, 50) }}
@endif
|
{{ $category->slug }}
|
@if($category->status)
{{ __('Active') }}
@else
{{ __('Inactive') }}
@endif
|
{{ $category->blogs_count }}
|
{{ $category->created_at->format('M d, Y') }} |
|
@empty
| {{ __('No categories found') }} |
@endforelse
{{ $categories->links('pagination::bootstrap-5') }}