@extends('admin.layouts.app') @section('title', 'Students') @section('breadcrumb') @endsection @section('content')
Clear
Students {{ $students->total() }}
@forelse($students as $student) @empty @endforelse
Student Code / Roll Class Sem Community Mobile Status Actions
{{ strtoupper(substr($student->student_name, 0, 2)) }}
{{ $student->student_name }}
{{ $student->academic_year }}
{{ $student->student_code }}
{{ $student->roll_no ?? '—' }}
{{ $student->class->name ?? '—' }} {{ $student->current_semester }} {{ $student->community }} {{ $student->mobile_no }} {{ ucfirst($student->status) }}

No students found

@if ($students->hasPages())
{!! $students->withQueryString()->links('pagination::bootstrap-5') !!}
@endif
@endsection