|
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 Student(s) Registered:
{{ $students ? $students->count() : 0 }}
|
|
No. of Male Student(s) Registered:
{{ $students ? $students->where('gender', 'Male')->count() : 0 }}
|
|
No. of Female Student(s) Registered:
{{ $students ? $students->where('gender', 'Female')->count() : 0 }}
|