Scholar Diary
Upcoming Deadlines
@foreach($upcomingDeadlines->take(5) as $item)
@php
$interaction = $item['interaction'];
$scholarship = $interaction->scholarship;
$daysLeft = $item['days_left'];
$isPast = $item['is_past'];
@endphp
@if($scholarship)
{{ $item['deadline']->format('M d, Y') }}
@endif
@endforeach
{{ Str::limit($scholarship->title, 50) }}
@if($isPast) {{ abs($daysLeft) }} days overdue @elseif($daysLeft == 0) Today! @else {{ $daysLeft }} days left @endifApplied Scholarships {{ $appliedInteractions->count() }}
@foreach($appliedInteractions as $interaction)
@php $scholarship = $interaction->scholarship; @endphp
@if($scholarship)
@include('student.app.scholarship.partials.diary-card', [
'scholarship' => $scholarship,
'interaction' => $interaction,
'isApplied' => true,
'profile' => $profile,
'socialProof' => $socialProof->get($scholarship->id)
])
@endif
@endforeach
Wish to Apply {{ $savedInteractions->count() }}
@foreach($savedInteractions as $interaction)
@php $scholarship = $interaction->scholarship; @endphp
@if($scholarship)
@include('student.app.scholarship.partials.diary-card', [
'scholarship' => $scholarship,
'interaction' => $interaction,
'isApplied' => false,
'profile' => $profile,
'socialProof' => $socialProof->get($scholarship->id)
])
@endif
@endforeach
Students Like You Also Applied To
@foreach($collaborativeInsights as $insight)
@php $scholarship = $insight['scholarship']; @endphp
@if($scholarship)
@endif
@endforeach
{{ $insight['users'] }} similar students applied
{{ Str::limit($scholarship->title, 60) }}
@if($scholarship->university) {{ Str::limit($scholarship->university, 40) }} @endifYou Might Also Like
@foreach($smartRecommendations->take(6) as $scholarship)
@endforeach
@include('student.app.scholarship.partials.scholarship-card-content', ['scholarship' => $scholarship, 'profile' => $profile])
Your Scholar Diary is Empty
Start by saving scholarships or marking them as "Wish to Apply" to track your applications.
Browse Scholarships