| # |
School |
Name |
Image |
Status |
Action |
@forelse ($addons as $key => $addon)
| {{ $key + 1 }} |
{{ $addon->school->name ?? '-' }}
|
{{ $addon->name }} |
@if($addon->image)
@else
No image
@endif
|
@if ($addon->status == 'active')
Active
@else
Inactive
@endif
|
|
@empty
|
No add-ons found.
|
@endforelse
@if(method_exists($addons, 'links'))
{{ $addons->links('pagination::bootstrap-4') }}
@endif