@extends('admin.layouts.app') @section('content')
@forelse ($schools as $school) @empty @endforelse
School Name Phone No. Email Id. Address Created At Status Action
{{ $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 Data Yet
{{--
--}}
{{-- @include('admin.layouts.paginate', ['paginatedCollection' => $listBlogs]) --}} @endsection @push('scripts') @endpush