@extends('website.layouts.app') @section('content') @include('website.layouts.title_section')
Support Our Causes

Your small help can bring big changes for the lives of cows in need.

@foreach($campaigns as $index => $campaign)
{{ $campaign->title }}
{{ $campaign->title }}

{!! Str::limit($campaign->description, 100) !!}

@php $goal = $campaign->goal_amount ?? 0; $raised = $campaign->raised_amount ?? 0; $percentage = $goal > 0 ? round(($raised / $goal) * 100, 2) : 0; @endphp
{{ number_format($raised) }} raised

Goal: {{ number_format($goal) }} ({{ $percentage }}%)

View Details
@endforeach
@endsection