@extends('layouts.app') @section('title', 'Student List') @section('content')

Students

Manage all students in the system

Add New Student
{{-- Messages --}} @if (session('success'))
{{ session('success') }}
@endif {{-- Filter Bar --}}
{{-- Card --}}
📚 Student Records
{{ $stats['total_students'] }} Students
@if ($students->count() > 0)
@foreach ($students as $student) @endforeach
Student Roll No Trade Shift Mobile Email Actions
@if ($student->photo) {{ $student->user->name }} @else {{ strtoupper(substr($student->user->name, 0, 1)) }} @endif
{{ $student->user->name }}
{{ $student->gender }}
{{ $student->roll_no }} {{ $student->trade }} {{ ucfirst($student->shift) }} {{ $student->user->mobile }} {{ $student->user->email }}
Edit
@csrf @method('DELETE')
{{-- Pagination --}} @else

No students found

@endif
@endsection