@extends('layouts.app') @section('title', 'Students Directory') @section('page_header', 'Student Interns Directory') @section('content')
Filter students by college, age, course domain, or search by name
| Student Name | College | Contact Info | Age / Gender | Certificates | Actions |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($student->full_name, 0, 1)) }}
{{ $student->full_name }}
Added {{ $student->created_at->format('d M Y') }}
|
{{ $student->college->name ?? 'Direct Applicant' }} |
{{ $student->email ?? 'No email' }}
{{ $student->phone ?? 'No phone' }}
|
{{ $student->age ? $student->age . ' yrs' : 'N/A' }} @if($student->gender) • {{ $student->gender }} @endif | {{ $student->certificates->count() }} Issued | |
| No student records found. | |||||