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

My Scholarship Application

@forelse ($application as $i => $app) @empty @endforelse
No. Student ID Term/Year Scholarship Name Application Date Status Manage
{{ $i + 1 }} {{ $app->student_code }} {{ $app->semester ?? '-' }}/{{ $app->academic_name ?? '-' }} {{ $app->name_th }} ({{ $app->name_en }}) {{ date('d M Y', strtotime($app->application_date)) }} @if($app->status == 'pending') {{ $app->status }} @elseif($app->status == 'approved') {{ $app->status }} @elseif($app->status == 'rejected') {{ $app->status }} @else {{ $app->status }} @endif
No data available.
@include('layouts.footer') @endsection