@props([ 'profile', 'relatedProfiles' => [], 'currency' => null, 'currencySymbol' => null ])
{{ $profile->name }}, {{ $profile->age }} years old from {{ $profile->location }} @if($profile->featured)
Featured
@endif

{{ $profile->name }}

{{ $profile->age }} years
{{ $profile->location }}

{{ $profile->title }}

{{ \Illuminate\Support\Str::limit($profile->story, 250) }} @if(strlen($profile->story) > 250) @endif

Donation Progress {{ number_format($profile->progress_percentage, 0) }}% Complete
{{ $profile->progress_percentage }}%
Raised {{ $profile->formatted_raised }}
Goal {{ $profile->formatted_goal }}
@if($profile->needs && $profile->needs->count() > 0)

Specific Needs

    @foreach($profile->needs as $need)
  • {{ $need->description }}
  • @endforeach
@endif
@push('scripts') @endpush