Back
Edit
@if($scholarship->status === 'pending')
@endif
- Status:
-
@if($scholarship->status === 'approved')
Approved
@elseif($scholarship->status === 'rejected')
Rejected
@else
Pending
@endif
- University:
- {{$scholarship->university ?? 'N/A'}}
- Country:
- {{$scholarship->country ?? 'N/A'}}
- Degree Level:
-
@if($scholarship->degree_level)
{{ucfirst($scholarship->degree_level)}}
@else
N/A
@endif
- Deadline:
-
@if($scholarship->deadline)
@if($scholarship->deadline->isPast())
{{$scholarship->deadline->format('F d, Y')}} (Passed)
@else
{{$scholarship->deadline->format('F d, Y')}} ({{$scholarship->deadline->diffForHumans()}})
@endif
@else
N/A
@endif
- Course Starts:
- {{$scholarship->course_starts?->format('F d, Y') ?? 'N/A'}}
- Funding Type:
-
@if($scholarship->funding_type)
{{ucfirst(str_replace('_', ' ', $scholarship->funding_type))}}
@else
N/A
@endif
@if($scholarship->funding_amount)
- Funding Amount:
- {{$scholarship->currency ?? 'USD'}} {{number_format($scholarship->funding_amount, 2)}}
@endif
@if($scholarship->fields_of_study && count($scholarship->fields_of_study) > 0)
- Fields of Study:
-
@foreach($scholarship->fields_of_study as $field)
{{$field}}
@endforeach
@endif
@if($scholarship->description)
- Description:
- {!! nl2br(e($scholarship->description)) !!}
@endif
@if($scholarship->eligibility)
- Eligibility:
- {!! nl2br(e($scholarship->eligibility)) !!}
@endif
@if($scholarship->benefits)
- Benefits:
- {!! nl2br(e($scholarship->benefits)) !!}
@endif
@if($scholarship->application_link)
- Application Link:
-
Apply Now
@endif
@if($scholarship->source_url)
- Source URL:
-
{{$scholarship->source_url}}
@endif
- Created:
- {{$scholarship->created_at->format('F d, Y H:i')}}
- Last Updated:
- {{$scholarship->updated_at->format('F d, Y H:i')}}
@include('layouts.admin.footer')