@include('includes.side-nav')
@include('includes.header')
@include('includes.messages')
| ID | Name | Artist | Category | Status | Actions |
@forelse($illustrations as $item)
| {{ $item->id }} |
{{ $item->name_en }} |
{{ $item->artist->artist_name ?? '' }} |
{{ $item->category->name_en ?? '' }} |
{{ $item->status?'Active':'Inactive' }} |
|
@empty
| No records found |
@endforelse
{{ $illustrations->appends(request()->query())->links('pagination::bootstrap-4') }}
@include('includes.footer')