Scholarship Management

Total Scholarships

{{$stats['total']}}

Pending

{{$stats['pending']}}

Approved

{{$stats['approved']}}

Rejected

{{$stats['rejected']}}

All Scholarships
@forelse($scholarships as $scholarship) @empty @endforelse
Title University Country Degree Level Deadline Status Actions
{{Str::limit($scholarship->title, 50)}} {{$scholarship->university ?? 'N/A'}} {{$scholarship->country ?? 'N/A'}} @if($scholarship->degree_level) {{ucfirst($scholarship->degree_level)}} @else N/A @endif @if($scholarship->deadline) @if($scholarship->deadline->isPast()) {{$scholarship->deadline->format('M d, Y')}} @else {{$scholarship->deadline->format('M d, Y')}} @endif @else N/A @endif @if($scholarship->status === 'approved') Approved @elseif($scholarship->status === 'rejected') Rejected @else Pending @endif
@if($scholarship->status === 'pending') @endif
@csrf @method('DELETE')
No scholarships found
@if($scholarships->hasPages())
{{ $scholarships->links('pagination::bootstrap-4') }}
@endif
@include('layouts.admin.footer')