@extends('layouts.membership') @section('title', 'Donations - The LaLiT Loyalty') @section('content')

All Donations

Support meaningful causes and earn loyalty points

@if($donations->count() > 0)
@foreach($donations as $donation)
@if($donation->donationImage && $donation->donationImage->url) {{ $donation->title }} @elseif($donation->image) {{ $donation->title }} @else
@endif
{{ $donation->title }}
@if($donation->description)

Donation Details:

{{ Str::limit($donation->description, 120) }}

@endif
Donate Points: {{ $donation->donate_points }}
INR Value: {{ $donation->formatted_inr_value }}
@endforeach
@else

No Active Donations

There are currently no active donation campaigns available. Please check back later for new opportunities to support meaningful causes.

@endif
@endsection @push('scripts') @endpush