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