@extends('layouts.admin')
@section('title', 'Plans')
@section('role-label', 'Super Admin')
@section('page-title', 'Subscription Plans')
@section('sidebar-nav')@include('super-admin.partials.sidebar')@endsection
@section('content')
@forelse($plans as $plan)
{{ $plan->name }}
{{ $plan->status }}
{{ $plan->duration_days }} days
- {{ $plan->menu_item_limit === -1 ? 'Unlimited' : $plan->menu_item_limit }} Menu Items
- {{ $plan->table_limit === -1 ? 'Unlimited' : $plan->table_limit }} Tables
- {{ $plan->staff_limit === -1 ? 'Unlimited' : $plan->staff_limit }} Staff
- Custom Domain: {{ $plan->custom_domain_allowed ? '✅' : '❌' }}
@empty
No plans yet.
Create one →
@endforelse
@endsection