Student Name
: {{ $student->student_name}}
Student ID
: {{ $student->student_id }}
School
: {{ $student->nama_pusat }}
{{--
List Student Outing Application
--}}
{{-- @if(count($details) > 0) --}}
| No. |
Date Applied |
Reason |
Outing Period |
Approval |
Approval By |
Scanned Out |
Scanned In |
@forelse($details as $detail)
| {{ $loop->iteration }}. |
{{ $detail->date_created }} |
{{ $detail->reason }} |
{{ $detail->start_date }} - {{ $detail->end_date }} |
{{-- {{ $detail->appl_status }} | --}}
{{ $detail->appl_status }} |
{{ $detail->approval_by ?? 'No information provided' }} |
{{ $detail->masa_keluar ?? '-' }} |
{{ $detail->masa_masuk ?? '-' }} |
@empty
| No outing application record found for this student. |
@endforelse
{{ $details->links() }}
{{-- @else
No outing application record found for this student.
@endif --}}
{{--
--}}