@extends('layouts.app') @section('page', $page) @section('title', getSetting('APPLICATION_NAME') . ' | ' . $page) @section('content')

Choose your plan

{{ getSetting('PRICING_PLAN_NAME_FREE') }}
@if (auth()->user() && auth()->user()->plan_type == 'free')
Current
@endif

Free

  • {{ getSetting('MEETING_LIMIT') }} Meetings
  • Limited Meeting Time
{{ getSetting('PRICING_PLAN_NAME_PAID') }}
@if (auth()->user() && auth()->user()->plan_type == 'paid')
Current
@endif

{{ getCurrencySymbol() . getSetting('MONTHLY_PRICE') }} /month

  • Unlimited Meetings
  • Unlimited Meeting Time
@endsection