@if(isset($showAppliedBadge) && $showAppliedBadge)
Applied
@endif @if(isset($profile) && $profile && $profile->completed && isset($scholarship->match_score) && $scholarship->match_score !== null)
{{ $scholarship->match_score }}% Match
@endif @if($scholarship->university || $scholarship->country)
@if($scholarship->university)
{{ Str::limit($scholarship->university, 45) }}
@endif @if($scholarship->country)
{{ $scholarship->country }}
@endif
@endif @if($scholarship->degree_level || $scholarship->funding_type)
@if($scholarship->degree_level) {{ ucfirst($scholarship->degree_level) }} @endif @if($scholarship->funding_type) {{ str_replace('_', ' ', ucfirst($scholarship->funding_type)) }} @endif
@endif

{{ Str::limit(strip_tags($scholarship->description ?? ''), 130) }}

@if($scholarship->deadline)
Deadline: {{ \Carbon\Carbon::parse($scholarship->deadline)->format('M d, Y') }}
@endif