@extends('prints.layout') @section('title', 'Admit Cards - ' . $exam->name) @section('page-style') @page { margin: 10mm 8mm; } @endsection @section('content') @foreach ($students->chunk(4) as $group)
|
{{ $school['name'] }}
@if ($school['address'])
{{ $school['address'] }}
@endif
Admit Card
{{ $exam->name }}
Exam: {{ $exam->start_date->format('M d') }} - {{ $exam->end_date->format('M d, Y') }}
@endif
|
@endforeach
{{-- Fill empty cell if odd number in row --}}
@if ($row->count() === 1)
@endif | ||||||||||||