@extends('layoutsteacher.layouts') @section('content')

ข้อมูลผู้เรียน

@if (!empty($students)) @foreach($students as $student) @endforeach @endif
ชื่อ-นามสกุล อีเมล วันที่ลงทะเบียน วันที่ใช้งานล่าสุด ดูรายละเอียด
{{ $student->firstname }} {{ $student->lastname }} {{ $student->email ?? '-' }} {{ $student->created_at->format('d/m/Y') }} {{ $student->updated_at->format('d/m/Y') }}
@if ($students->lastPage() > 1)
@for ($i = 1; $i <= $students->lastPage(); $i++) {{ $i }} @endfor
@endif
@endsection