Plan Details
Name
{{ $plan->name }}
Slug
{{ $plan->slug }}
Module
{{ ucfirst($plan->module ?? 'platform') }}
Status
{{ $plan->is_active ? 'Active' : 'Inactive' }}
Monthly Price
{{ ($plan->price_monthly ?? 0) > 0 ? '₦' . number_format($plan->price_monthly, 2) : 'Free' }}
Yearly Price
{{ ($plan->price_yearly ?? 0) > 0 ? '₦' . number_format($plan->price_yearly, 2) : 'Free' }}
@if($plan->description)
Description
{{ $plan->description }}
@endif