@extends('layouts.pages') @section('title', 'Our Charity Partners') @section('meta_description', 'Discover the charity organizations we support and partner with to make a positive impact in communities.') @section('meta_keywords', 'charity, partners, giving back, community support, social responsibility') @section('content')

Driven by purpose. United by compassion

We have partnered with Points for Good, an organization that supports various charities for their commitment to making the world a better place.
@if ($charities->isNotEmpty())
@foreach ($charities as $charity)
@if ($charity->is_featured)
Featured
@endif
@if ($charity->logo && Storage::disk('public')->exists($charity->logo)) {{ $charity->logo_alt ?? $charity->name }} @else
@endif

{{ $charity->name }}

@if ($charity->description)

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

@endif @if ($charity->website_url) @endif
@endforeach
@else

No Charity Partners Yet

We're currently working on establishing partnerships with charity organizations. Please check back soon to see our amazing charity partners!

@endif
Sign In To Donate
@endsection