@extends('layouts.admin') @section('title', 'Manage Donation Plans') @section('content')

Donation Plans

Sync Plans Create New Plan
@include('partials.alerts')
All Donation Plans
@forelse($plans as $plan) @empty @endforelse
Name Amount Interval Currency Status Actions
{{ $plan->name }} {{ $plan->formatted_amount }} {{ $plan->formatted_interval }} {{ $plan->currency }} @if($plan->active) Active @else Inactive @endif
No plans found
{{ $plans->links() }}
@endsection