@extends('layouts.admin')
@section('title', 'Manage Donation Plans')
@section('content')
@include('partials.alerts')
| Name |
Amount |
Interval |
Currency |
Status |
Actions |
@forelse($plans as $plan)
| {{ $plan->name }} |
{{ $plan->formatted_amount }} |
{{ $plan->formatted_interval }} |
{{ $plan->currency }} |
@if($plan->active)
Active
@else
Inactive
@endif
|
|
@empty
| No plans found |
@endforelse
{{ $plans->links() }}
@endsection