@foreach ($students->chunk(Arr::get($layout, 'column', 1)) as $studentPair)
@foreach ($studentPair as $student)
@if (Arr::get($layout, 'watermark')) @endif @includeFirst([ config('config.print.custom_path') . 'exam.header', 'print.exam.header', ]) @if (view()->exists(config('config.print.custom_path') . 'exam.marksheet-subheader')) @include(config('config.print.custom_path') . 'exam.marksheet-subheader', [ 'titles' => $titles, ]) @else
@foreach ($titles as $title) @if (Arr::get($title, 'label'))
{{ Arr::get($title, 'label') }}
@endif @endforeach
@endif
{{ trans('student.props.name') }} {{ $student->name }} {{ trans('contact.props.birth_date') }} {{ \Cal::date($student->birth_date)->formatted }}
{{ trans('student.admission.props.code_number') }} {{ $student->code_number }} {{ trans('student.roll_number.roll_number') }} {{ $student->roll_number }}
{{ trans('contact.props.father_name') }} {{ $student->father_name }} {{ trans('contact.props.mother_name') }} {{ $student->mother_name }}
{{ trans('academic.course.course') }} {{ $student->course_name . ' ' . $student->batch_name }} {{ trans('contact.props.contact_number') }} {{ $student->contact_number }}
{{ trans('academic.course.props.term') }} {{ $student->course_term }} {{ trans('student.enrollment_type.enrollment_type') }} {{ $student->enrollment_type_name }}
@foreach ($student->rows as $row) @foreach ($row as $cell) @endforeach @endforeach
Arr::get($cell, 'align') == 'center', 'font-110pc' => Arr::get($cell, 'font-size') == 'lg', 'font-120pc' => Arr::get($cell, 'font-size') == 'xl', 'py-2' => Arr::get($cell, 'font-size') == 'xl', 'font-weight-bold' => Arr::get($cell, 'bold'), ]) style={{ Arr::get($cell, 'style') }} rowspan="{{ Arr::get($cell, 'rowspan', 1) }}"> {{ Arr::get($cell, 'label') }} @if (Arr::get($cell, 'blank'))   @endif
@foreach ($student->summaryRows as $row) @foreach ($row as $cell) @endforeach @endforeach
Arr::get($cell, 'align') == 'center', 'font-110pc' => Arr::get($cell, 'font-size') == 'lg', 'font-120pc' => Arr::get($cell, 'font-size') == 'xl', 'py-2' => Arr::get($cell, 'font-size') == 'xl', 'font-weight-bold' => Arr::get($cell, 'bold'), ]) style={{ Arr::get($cell, 'style') }} rowspan="{{ Arr::get($cell, 'rowspan', 1) }}"> {{ Arr::get($cell, 'label') }} @if (Arr::get($cell, 'blank'))   @endif

{{ trans('exam.result_date') }}: {{ \Cal::date(Arr::get($params, 'result_date'))->formatted }}

@includeFirst( [config('config.print.custom_path') . 'exam.signatory', 'print.exam.signatory'], ['layout' => $layout, 'margin' => 'mt-32'] ) @if (Arr::get($layout, 'show_print_date_time'))

{{ trans('general.printed_at') }}: {{ \Cal::dateTime(now())->formatted }}

@endif
@endforeach
@endforeach