@extends('supertiendent.layouts.app') @push('style') @endpush @section('content')

School List

{{-- --}} @forelse ($schoolLists as $school) @empty @endforelse
District Name School Name Phone No. Email Id. Address Created At StatusAction
{{ $school->districts?->district_name }} {{ $school->school_name }} {{ $school->contact_phone_number ?? '' }} {{ $school->school_email ?? '' }} {{ !empty($school->address) ? substr($school->address, 0, 100) : '' }} {{ date('d-m-Y', strtotime($school->created_at)) }} @switch($school->status) @case(1) Active @break @case(0) Inactive @break @default Deleted @endswitch
No conferences found.
@endsection @push('scripts') @endpush @section('modal') @endsection