@foreach ($students->chunk(3) as $row) @foreach ($row as $student) @endforeach @for ($i = $row->count(); $i < 3; $i++) @endfor @endforeach
@if ($student->group) @endif @if ($student->section) @endif
Roll {{ sprintf('%02d', $student->roll_no) }}
Name {{ $student->user?->name }}
Class {{ $student->class?->name }}
Group {{ $student->group?->name ?? "-" }}
Section {{ $student->section?->name ?? "-" }}