@extends('layouts.app') @section('title', 'Subscription Plans') @section('page-title', 'Subscription Plans') @section('content')
Manage hotel subscription plans, prices, and features.
| Name | Monthly | Termly | Annually | Max Staff | Commission | Status | |
|---|---|---|---|---|---|---|---|
| {{ $plan->name }} | ₦{{ number_format($plan->price_monthly, 0) }} | ₦{{ number_format($plan->price_termly, 0) }} | ₦{{ number_format($plan->price_annually, 0) }} | {{ $plan->max_staff == 999 ? 'Unlimited' : $plan->max_staff }} | {{ $plan->commission_rate }}% | @if($plan->is_active) Active @else Inactive @endif |