@extends('adminlte::page') @section('title', 'Subscription Plans') @section('content_header')

Subscription Plans

Add Plan
@stop @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse($plans as $plan) @empty @endforelse
ID Name Price Period Status Stripe Product Stripe Price Action
{{ $plan->id }} {{ $plan->name }}
{{ $plan->slug }}
{{ strtoupper($plan->currency) }} {{ number_format($plan->price, 2) }} {{ ucfirst($plan->billing_period) }} @if($plan->is_active) Active @else Inactive @endif {{ $plan->stripe_product_id }} {{ $plan->stripe_price_id }}
@csrf @method('DELETE')
No Plans Found
@if($plans->hasPages()) @endif
@stop