@extends('layouts.app') @section('title', 'Students Directory') @section('page_header', 'Student Interns Directory') @section('content')

Registered Student Interns

Filter students by college, age, course domain, or search by name

@if(request()->hasAny(['search', 'college_id', 'course_id', 'min_age'])) @endif
@forelse($students as $student) @empty @endforelse
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.
@if($students->hasPages())
{{ $students->links() }}
@endif

Bulk Import Students via CSV

@csrf

Upload a CSV file containing columns: Full Name, Email, Phone, Age, Gender, College Name.

@endsection