@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| 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->sort_order }} | |
|
No subscription packages yet. Create your first package → |
|||||