@extends('layouts.master') @section('title', 'Student Profile') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') {{--

Student

--}} @include('layouts.title')

{{-- @foreach ($student as $i => $person) --}}

{{ $student->student_code ?? '' }}

{{ $student->student_firstname ?? '' }} {{ $student->student_lastname ?? '' }}
{{ $student->school_name ?? '' }}


Name
Student ID
{{ $student->student_firstname ?? '' }} {{ $student->student_lastname ?? '' }}
{{ $student->student_code ?? '' }}
E-mail
Degree
{{ $student->student_email ?? '' }}
{{ $student->student_degree ?? '' }}
Advisor
Curriculum
{{ $student->advisor_title ?? '' }} {{ $student->advisor_name ?? '' }}
{{ $student->curriculum_name ?? '' }} ({{ $student->curriculum_shortname ?? '' }})
School
Nationality
{{ $student->school_name ?? '' }} ({{ $student->school_shortname ?? '' }})
{{ $student->nationality_name ?? '' }}
Academic Status
{{ $student->academicstatus_name ?? '' }}
End Date of Student Status (Exec. SIIT)
End Date of Student Status (TU)
{{ $student->student_end_date_student_status_siit ?? '-' }}
{{ $student->student_end_date_student_status ?? '-' }}
{{--
--}}
Scholarship Start Date
Scholarship End Date
{{ $student->academic_name ?? '' }}/{{ $student->student_semester_from ?? '' }}
{{ $student->academic_name ?? '' }}/{{ $student->student_semester_to ?? '' }}
Type of Debtor
Scholarship Program
{{ $typeNames ?: '-' }}
{{ $scholarshipNames ?? '-' }}
{{-- Scholarship Status --}} Agreement No.
Agreement Date
{{-- {{ $student->scholarship_status_name ?? '' }} --}} {{ $student->student_agreement_no ?? '-' }}
{{ $student->student_agreement_date ?? '-' }}
{{-- Scholarship Status --}} Guarantor First Name.
Guarantor Last Name
{{-- {{ $student->scholarship_status_name ?? '' }} --}} {{ $student->student_guarantor_firstname ?? '-' }}
{{ $student->student_guarantor_lastname ?? '-' }}
Guarantor E-mail
Debt Status
{{ $student->student_guarantor_email ?? '-' }}
{{ $student->student_debt_status ?? '-' }}
The Outstanding Balance (THB)
Due Date of the Outstanding Balance Payment
{{ isset($student->student_outstanding_balance) ? number_format($student->student_outstanding_balance, 2) : '-' }}
{{ $student->student_outstanding_balance_payment ?? '-' }}
Remark
{{--
--}}
{{ $student->student_remark ?? '-' }}
{{--
--}}
{{-- @endforeach --}}



@include('layouts.footer') @endsection