@extends('layouts.master') @section('title', 'My Applications by Student') @section('style') @endsection @section('content') @include('layouts.header') @include('layouts.header-sub')

รายการใบสมัครทุนการศึกษา

@forelse ($applications as $index => $app) @empty @endforelse
# Student ID Name Scholarship Type Status Submitted At Action
{{ $index + 1 }} {{ $app->student_code }} {{ $app->student_firstname }} {{ $app->student_lastname }} {{ $app->name_en }} {{ $app->scholarship_type_name }} @if ($app->status === 'submitted') Submitted @elseif ($app->status === 'draft') Draft @elseif ($app->status === 'approved') Approved @elseif ($app->status === 'rejected') Rejected @else {{ $app->status }} @endif {{ $app->submitted_at ? \Carbon\Carbon::parse($app->submitted_at)->format('d/m/Y H:i') : '-' }} View
No applications found.
@include('layouts.footer') @endsection