@extends('print-out.base-layout') @section('title', 'قوائم إجلاس الطلاب') @section('content') @php $studentsPerPage = 25; $totalPages = ceil(count($students) / $studentsPerPage); @endphp @for ($page = 0; $page < $totalPages; $page++)

قوائم إجلاس الطلاب

الكلية :{{ $collegeName ?? '' }}
الدفعة :{{ $batchValue ?? '' }}
القسم :{{ $sectionName ?? '' }}
البرنامج :{{ $programName ?? '' }}
@foreach ($students->slice($page * $studentsPerPage, $studentsPerPage) as $i => $student) @for ($j = 0; $j < 5; $j++) @endfor @endforeach
# رقم الطالب اسم الطالب التوقيع اعمال سنة نصفي نهائي المجموع
{{ $page * $studentsPerPage + $i + 1 }} {{ $student->student_id }} {{ $student->student_name }} 
@endfor @endsection