@extends('layouts.master') @section('title') Donor Report @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('title') Campaign Report @endslot @endcomponent
{{-- --}}
@if ($notification = Session::get('error'))
{{ $notification }}
@endif @if ($notification = Session::get('success'))
{{ $notification }}
@endif
@php $i = 1; @endphp @foreach ($donor as $value ) @php $i++; @endphp @endforeach
# Campaign Donation
{{$i}} {{$value['donor']->name }} ${{ number_format((float)$value['donotion']['sum'],2) ? : '0.00' }}
@endsection @section('script') @endsection