{{ __('School Management') }}

Add School
@forelse($schools as $school)
{{ $school->name }}

{{ $school->name }}

{{ $school->type }}

{{ $school->is_active ? 'Active' : 'Inactive' }}
{{ Str::limit($school->address, 50) }}
@if($school->phone)
{{ $school->phone }}
@endif @if($school->principal_name)
{{ $school->principal_name }}
@endif
{{ $school->getTotalUsersCount() }}
Total Users
{{ number_format($school->getAssessmentCompletionRate(), 1) }}%
Completion Rate
View Details Edit
@csrf
@empty

No schools

Get started by creating a new school.

@endforelse
{{ $schools->links() }}