@includeFirst([config('config.print.custom_path') . 'academic.header', 'print.academic.header'])

{{ $course->name }} {{ $course->division->period->name }}

@if ($textbooks->count())

{{ trans('academic.book_list.types.textbook') }}

@foreach ($textbooks as $textbook) @endforeach
{{ trans('general.sno') }} {{ trans('academic.subject.subject') }} {{ trans('academic.book_list.props.title') }} {{ trans('academic.book_list.props.publisher') }}
{{ $loop->index + 1 }} {{ $textbook->subject?->name }} {{ $textbook->title }} {{ $textbook->publisher }}
@endif @if ($notebooks->count())

{{ trans('academic.book_list.types.notebook') }}

@foreach ($notebooks as $notebook) @endforeach
{{ trans('general.sno') }} {{ trans('academic.subject.subject') }} {{ trans('academic.book_list.props.title') }} {{ trans('academic.book_list.props.quantity') }}
{{ $loop->index + 1 }} {{ $notebook->subject?->name }} {{ $notebook->title }} @if ($notebook->pages) ({{ $notebook->pages }}) {{ trans('academic.book_list.props.pages') }} @endif {{ $notebook->quantity }} {{ trans('list.unit.pcs') }}
@endif