{{-- resources/views/admin/students/search.blade.php --}} @extends('layouts.app') @section('title', 'Global Student Search') @section('breadcrumb', 'Student Search') @section('content')
| Student Name | MCSS ID | Current School | Status | |
|---|---|---|---|---|
| {{ $student->full_name }} | {{ $student->mcss_student_id }} | {{ optional($student->currentSchool)->name ?? '—' }} | {{ ucfirst($student->status) }} | View Profile |
| No students found matching "{{ request('q') }}". | ||||