@extends('layouts.admin') @section('content')

School

School Lists

{{--
--}}
@if($schools->count()>0) @php $i = 0; $i = $schools->perPage() * ($schools->currentPage() - 1); @endphp
@foreach($schools as $school) @endforeach
Sl. No Name Status Action
{{++$i}} {{$school->name}} @if($school->is_active ==1) @else @endif
@else
Nothing Found
@endif
@foreach($schools as $school) @include('layouts._partials.confirmation-popup', ['resource'=> $school , 'resourceName'=> 'school', 'resourceStatus'=> 'school-status', 'heading'=> 'School']) @endforeach @endsection