@if (count($categories) > 0)
S.N. |
Title |
Slug |
Is Parent |
Parent Category |
Photo |
Status |
Action |
S.N. |
Title |
Slug |
Is Parent |
Parent Category |
Photo |
Status |
Action |
@foreach ($categories as $category)
@php
@endphp
{{ $category->id }} |
{{ $category->title }} |
{{ $category->slug }} |
{{ $category->is_parent == 1 ? 'Yes' : 'No' }} |
{{ $category->parent_info->title ?? '' }}
|
@if ($category->photo)
@else
@endif
|
@if ($category->status == 'active')
{{ $category->status }}
@else
{{ $category->status }}
@endif
|
|
@endforeach
{{ $categories->links() }}
@else
No Categories found!!! Please create Category
@endif