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

Subscription Plans

Create New Plan
@include('admin.partials.alerts')
@if($plans->isEmpty())

No subscription plans found. Create one now.

@else
@foreach ($plans as $plan) @endforeach
Name Price Interval Trial Status Actions
{{ $plan->name }} {{ number_format($plan->price, 2) }} {{ $plan->currency }} Every {{ $plan->interval_count }} {{ Str::plural($plan->interval, $plan->interval_count) }} {{ $plan->trial_period_days ? $plan->trial_period_days . ' days' : 'None' }} @if ($plan->active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
{{ $plans->links() }}
@endif
@endsection