@extends('layouts.master') @section('title', 'Application View') @section('style') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')

@yield('title')

{{-- ปุ่มด้านบน --}} {{-- ข้อมูลผู้สมัคร --}}
📋 Applicant Information

Application No: {{ $applications->application_no }}

Citizen ID: {{ $applications->application_citizen_id }}

Name: {{ $applications->application_title }} {{ $applications->application_name }} {{ $applications->application_surname }}

School: {{ $school->school_name ?? '-' }}

Program: {{ $applications->application_program }}

Syllabus: {{ $applications->application_syllabus }}


📎 Documents
  • Portfolio: @if ($applications->application_portfolio_file) View @else - @endif
  • Transcript: @if ($applications->application_transcript_file) View @else - @endif
  • Citizen ID: @if ($applications->application_citizen_file) View @else - @endif
{{-- สรุปคะแนนหลัก --}}
CGPA (All)

{{ number_format($applications->application_cgpa, 2) ?? '-' }}

{{-- Weight 0% : 0.00 --}}
CGPA by Subject

Math: {{ $applications->application_gpax_mathematics ?? '-' }}

Physics: {{ $applications->application_gpax_physics ?? '-' }}

English: {{ $applications->application_gpax_english ?? '-' }}

Weight 80% : {{ $gpax_score ?? '0.00' }}
{{-- ผู้ประเมิน + กราฟ --}}
Portfolio Review

Assist.Prof.Dr.Tide ({{ $portfolio_score }})

Assoc. Prof.Dr.Michael ({{ $portfolio_score }})

Portfolio Score 20% : {{ number_format($portfolio_score, 2) }}
Grand Total (100%)

{{ $grand_total ?? '0.00' }}

{{--
📊 Score Breakdown
--}}

{{-- Interviews --}}
📋 Interviews

Interview Result

{{-- @if($interview->result == 'Pass') Pass @else Fail @endif --}}
{{-- {{ $interview->result ?? '-' }} --}} Pass

Comment

{{--

{{ $interview->comment ?? '-' }}

--}}

Nice

Interviewer

{{--

{{ $interview->interviewer ?? '-' }}

--}}

MONICA FUENTES


{{-- Exam --}}
📋 Exam
Maths Physics EPT
40 100 40 100 75 100
35 87.50 37 92.50 69 92.00
Total SIIT Exam Scores 272.00 /300
@include('layouts.footer') @endsection @section('script') @endsection