@extends('layouts.user-app') @section('title') Donations @endsection @section('styles') @endsection @section('content') @include('partial.user-top-menu')

Projects Donation

Back
@php($fund = $donations->sum('donated')) @foreach($donations as $k => $donation) @endforeach
Project: {{ ucwords($donations[0]->project->title) }} Goal: {{ $donations[0]->project->goal }} Total Donations:{{ number_format($fund, 2) }}
# Doner Email Donated Date Status
{{ ++$k }} {{ ucwords($donation->donor) }} {{ $donation->email }} {{ $donation->donated }} {{ human_date($donation->created_at) }} {{ $donation->status }}
@endsection @section('scripts') @endsection