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