{{-- Summary Block --}}
| Student |
{{ $interestInventory->student?->first_name }} {{ $interestInventory->student?->last_name }} |
| Date |
{{ $interestInventory->date?->format('d/m/Y') ?? '—' }} |
| Created By |
{{ $interestInventory->creator?->name ?? '—' }} |
{{-- Questions Table --}}
Responses
@php
$labels = [
1 => 'My most interesting subject is',
2 => 'My most challenging subject is',
3 => 'What I enjoy most about school is',
4 => 'What I find most challenging about school is',
5 => 'Books I read recently',
6 => 'Activities I do outside of school',
7 => 'Three words to describe me',
8 => 'Careers that interest me',
9 => 'An ideal job for one day would be',
10 => 'My favourite Web sites are',
11 => 'My questions about next year are',
12 => 'School situations that are stressful for me are',
13 => 'I deal with stress or frustration by',
14 => 'Some interesting places I’ve been to are',
15 => 'If I could travel anywhere, I would like to go to',
16 => 'If I can’t watch television, I like to',
17 => 'I would like to learn more about',
];
@endphp
@foreach(range(1,17) as $i)
| {{ $labels[$i] }} |
{{ $interestInventory->{"q{$i}"} ?? '—' }}
|
@endforeach