@extends('header') @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_MANAGEMENT])
@if ($planDetails && $planDetails['active']) {{ trans('texts.plan_'.$planDetails['plan']) }} @if ($planDetails['trial']) ({{ trans('texts.plan_trial') }}) @elseif ($planDetails['expires']) ({{ trans('texts.plan_term_'.$planDetails['term'].'ly') }}) @endif @if ($planDetails['plan'] == PLAN_ENTERPRISE) {{ trans('texts.min_to_max_users', ['min' => Utils::getMinNumUsers($planDetails['num_users']), 'max' => $planDetails['num_users']])}} @endif @if ($portalLink) - {{ link_to($portalLink, trans('texts.view_client_portal'), ['target' => '_blank']) }} @endif @elseif(Utils::isNinjaProd()) {{ trans('texts.plan_free') }} @else {{ trans('texts.plan_free_self_hosted') }} @endif
@if ($planDetails['expires'] === false) {{ trans('texts.never') }} @else {{ Utils::dateToString($planDetails['expires']) }} @endif
{{ Utils::dateToString($planDetails['expires']) }}