@extends('layouts.app') @section('title', 'Subscription Plans') @section('content')

Subscription Plans

Manage plans and enabled hotel modules

All Plans

Create Plan

@forelse($plans as $plan) @empty @endforelse
Plan Price Limits Features Hotels Status Actions
{{ $plan->name }} @if($plan->description)
{{ $plan->description }} @endif
{{ $plan->billingLabel() }} {{ $plan->roomsLimitLabel() }}
{{ $plan->usersLimitLabel() }}
{{ $plan->branchesLimitLabel() }}
@if($plan->enabledFeatureLabels()) {{ count($plan->enabledFeatureLabels()) }} modules enabled
    @foreach(array_slice($plan->enabledFeatureLabels(), 0, 3) as $feature)
  • {{ $feature }}
  • @endforeach @if(count($plan->enabledFeatureLabels()) > 3)
  • + {{ count($plan->enabledFeatureLabels()) - 3 }} more
  • @endif
@else @endif
{{ $plan->hotels_count }} @if($plan->is_active) Active @else Inactive @endif Edit
No plans yet. Create the first plan.
@endsection