Scholar Diary

@if($upcomingDeadlines->count() > 0)
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)
{{ Str::limit($scholarship->title, 50) }}
@if($isPast) {{ abs($daysLeft) }} days overdue @elseif($daysLeft == 0) Today! @else {{ $daysLeft }} days left @endif
{{ $item['deadline']->format('M d, Y') }}
@endif @endforeach
@endif @if($appliedInteractions->count() > 0)
Applied 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
@endif @if($savedInteractions->count() > 0)
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
@endif @if($collaborativeInsights->count() > 0)
Students Like You Also Applied To
@foreach($collaborativeInsights as $insight) @php $scholarship = $insight['scholarship']; @endphp @if($scholarship)
{{ $insight['users'] }} similar students applied
{{ Str::limit($scholarship->title, 60) }}
@if($scholarship->university) {{ Str::limit($scholarship->university, 40) }} @endif
@endif @endforeach
@endif @if($smartRecommendations->count() > 0)
You Might Also Like
@foreach($smartRecommendations->take(6) as $scholarship)
@include('student.app.scholarship.partials.scholarship-card-content', ['scholarship' => $scholarship, 'profile' => $profile])
@endforeach
@endif @if($appliedInteractions->count() == 0 && $savedInteractions->count() == 0)
Your Scholar Diary is Empty

Start by saving scholarships or marking them as "Wish to Apply" to track your applications.

Browse Scholarships
@endif