@extends('layouts.admin') @section('title', 'Donations') @section('content')

Donations

Gross Donations

${{ number_format($donationAmount, 2, '.', ',') }}

Stripe Fees

-${{ number_format($donationFees, 2, '.', ',') }}

Net Donations

${{ number_format($donationAmount - $donationFees, 2, '.', ',') }}

{{-- --}} @foreach($donations as $donation) {{-- --}} @endforeach
ID Purpose Name Email Frequency AmountStripe IDStripe Fee Created At
{{ $donation->id }} {{ $donation->purpose ?? 'N/A' }} {{ $donation->first_name ?? 'N/A' }} {{ $donation->last_name ?? 'N/A' }} {{ $donation->email ?? 'N/A' }} {{ $donation->frequency ?? 'N/A' }} ${{ $donation->amount }}{{ $donation->stripe_id ?? 'N/A' }}{{ ($donation->stripe_fee) ? '$'.$donation->stripe_fee : 'N/A' }} {{ $donation->created_at->format('m/d/Y') }}
{{ $donations->links() }}
@endsection