@extends('fronts.layouts.app') @section('front-title') {{ __('messages.pricing') }} @endsection @section('front-css') @endsection @section('front-content')

{{ __('messages.web.choose_package_match_your_budget') }}

  • {{ __('messages.5_minute_installation') }}
  • {{ __('messages.try_team_plan') }}
  • {{ __('messages.no_credit_card') }}
{{--
{{__('messages.monthly')}}
{{__('messages.yearly')}}
--}}
@foreach ($subscriptionPricingMonthPlans as $key => $subscriptionPricingMonthPlan)

{{ $subscriptionPricingMonthPlan->name }}

{{ getSubscriptionPlanCurrencyIcon($subscriptionPricingMonthPlan->currency) }} {{ number_format($subscriptionPricingMonthPlan->price) }}

  • {{ __('messages.subscription_plan.events') }} : {{ $subscriptionPricingMonthPlan->planFeature->events }}
  • {{ __('messages.event.schedule_event') }} : {{ $subscriptionPricingMonthPlan->planFeature->schedule_events }}
@if (Auth::check()) {{ __('messages.web.choose_plan') }} @else {{ __('messages.web.choose_plan') }} @endif
@endforeach
@foreach ($subscriptionPricingYearPlans as $key => $subscriptionPricingYearPlans)

{{ $subscriptionPricingYearPlans->name }}

{{ getSubscriptionPlanCurrencyIcon($subscriptionPricingYearPlans->currency) }} {{ number_format($subscriptionPricingYearPlans->price) }}

  • {{ __('messages.subscription_plan.events') }} : {{ $subscriptionPricingYearPlans->planFeature->events }}
  • {{ __('messages.event.schedule_event') }} : {{ $subscriptionPricingYearPlans->planFeature->schedule_events }}
@if (Auth::check()) {{ __('messages.web.choose_plan') }} @else {{ __('messages.web.choose_plan') }} @endif
@endforeach
@foreach ($subscriptionPricingUnlimitedPlans as $key => $subscriptionPricingUnlimitedPlan)

{{ $subscriptionPricingUnlimitedPlan->name }}

{{ getSubscriptionPlanCurrencyIcon($subscriptionPricingUnlimitedPlan->currency) }} {{ number_format($subscriptionPricingUnlimitedPlan->price) }}

  • {{ __('messages.subscription_plan.events') }} : {{ $subscriptionPricingUnlimitedPlan->planFeature->events }}
  • {{ __('messages.event.schedule_event') }} : {{ $subscriptionPricingUnlimitedPlan->planFeature->schedule_events }}
@if (Auth::check()) {{ __('messages.web.choose_plan') }} @else {{ __('messages.web.choose_plan') }} @endif
@endforeach
{{--
@foreach ($subscriptionPricingMonthPlans as $key => $subscriptionPricingMonthPlan)

{{ $subscriptionPricingMonthPlan->name }}

{{ getSubscriptionPlanCurrencyIcon($subscriptionPricingMonthPlan->currency) }} {{ number_format($subscriptionPricingMonthPlan->price) }}

  • {{ __('messages.subscription_plan.events') }} : {{ $subscriptionPricingMonthPlan->planFeature->events }}
  • {{ __('messages.event.schedule_event') }} : {{ $subscriptionPricingMonthPlan->planFeature->schedule_events }}
@if (Auth::check()) {{ __('messages.web.choose_plan') }} @else {{ __('messages.web.choose_plan') }} @endif
@endforeach
@foreach ($subscriptionPricingYearPlans as $key => $subscriptionPricingYearPlans)

{{ $subscriptionPricingYearPlans->name }}

{{ getSubscriptionPlanCurrencyIcon($subscriptionPricingYearPlans->currency) }} {{ number_format($subscriptionPricingYearPlans->price) }}

  • {{ __('messages.subscription_plan.events') }} : {{ $subscriptionPricingYearPlans->planFeature->events }}
  • {{ __('messages.event.schedule_event') }} : {{ $subscriptionPricingYearPlans->planFeature->schedule_events }}
@if (Auth::check()) {{ __('messages.web.choose_plan') }} @else {{ __('messages.web.choose_plan') }} @endif
@endforeach
--}}

{{ $data['registeredUsersCount'] }}

{{ __('messages.web.registered_users') }}

Events Created

{{ $data['eventsCreatedCount'] }}

{{ __('messages.web.events_created') }}

Scheduled Events

{{ $data['scheduledEventsCount'] }}

{{ __('messages.web.scheduled_events') }}

@endsection