Subscription Plans

Create Plan
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($plans as $plan) @empty @endforelse
Name Price Duration Subscribers Status Actions

{{ $plan->name }}

@if($plan->description)

{{ Str::limit($plan->description, 50) }}

@endif
{{ $plan->formatted_price }} {{ $plan->duration_days }} days {{ $plan->subscriptions_count }} @if($plan->is_active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No subscription plans yet.
{{ $plans->links() }}