@extends('layouts.cork') @section('title', $title) @section('breadcrumb')
@endsection @section('content') @foreach ($students as $student) @endforeach
Last Name First Name School Email Grade SSID Action
{{ $student->last_name }} {{ $student->first_name }} {{ $student->school->name }} {{ $student->email }} {{ $student->grade }} {{ $student->ssid ?? 'N/A' }}
@endsection @section('page-js') @endsection