@extends('frontend.layouts.master') @section('title') Donate @endsection @section('main-content')

Donate

Our Donation Causes

The causes we care about

@if($causes->isNotEmpty()) @foreach($causes as $cause)
{{$cause->cause_title}}
{{$cause->cause_title}}

{{$cause->cause_title}}

{!! ($cause->details) !!}

Raised: ${{number_format($cause->raised_amount, 2)}}
Goal: ${{number_format($cause->intended_budget, 2)}}
@php $progressPercentage = $cause->intended_budget > 0 ? min(($cause->raised_amount / $cause->intended_budget) * 100, 100) : 0; @endphp {{--
--}}

Raised by {{$cause->donors_count}} people

Donate Now
@endforeach @endif
@endsection