| School
Name:
{{ $school ? $school->name : '' }}
|
| School Address:
{{ $school ? $school->address : '' }}
|
| School Zone:
{{ $school->zone ? $school->zone->zone : '' }}
|
| School Type:
{{ $school ? ($school->schooltype_id == 1 ? 'Public' : 'Private') : 'Not Defined' }}
|
| No. of Registered Student(s):
{{ $students ? $students->count() : 0 }}
|
| No. of Registered Male Student(s):
{{ $students ? $students->where('gender', 'Male')->count() : 0 }}
|
| No. of Registered Female Student(s):
{{ $students ? $students->where('gender', 'Female')->count() : 0 }}
|