@extends('layouts.app') @section('title', 'Subscription Packages') @section('page-title', 'Subscription Packages') @section('breadcrumb', 'Platform Admin / Pricing Packages') @section('content')

Manage the plans shown on the public /pricing page. Active packages appear to visitors in sort order.

Add package
@forelse($packages as $package) @empty @endforelse
Package Monthly Yearly Status Order
{{ $package->name }} @if($package->is_featured) Featured @endif @if($package->badge) {{ $package->badge }} @endif
@if($package->tagline)
{{ $package->tagline }}
@endif
@if($package->is_custom) Custom @elseif($package->is_free) Free @else {{ $package->formattedPrice('monthly') }} @endif @if($package->is_custom || $package->is_free) — @else {{ $package->formattedPrice('yearly') }} @endif {{ $package->is_active ? 'Active' : 'Hidden' }} {{ $package->sort_order }}
@csrf
Edit
@csrf @method('DELETE')

No subscription packages yet.

Create your first package →
@endsection