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

Manage donation campaigns and fundraising initiatives.

@if(session('success'))
{{ session('success') }}
@endif @if($donations->count() > 0)
@foreach($donations as $donation) @endforeach
Image Title Donate Points INR Value Status Actions
@if($donation->image) Donation Image @else
@endif
{{ $donation->title }}
@if($donation->description) {{ Str::limit($donation->description, 50) }} @endif
{{ $donation->donate_points }} {{ $donation->formatted_inr_value }} @if($donation->is_active) Active @else Inactive @endif
@else
No Donations Yet

Start by creating your first donation campaign.

Create First Donation
@endif
@endsection @section('scripts') @endsection