@extends('admin.adminlayouts.adminlayout') @section('head') {!! HTML::style('assets/admin/pages/css/pricing.css')!!} @stop @section('mainarea')

@lang("pages.billing.plans")

@if (session('error'))
{{ session('error') }}
@endif
Monthly Plans
@foreach($plans as $plan)

{{ $plan->plan_name }}

{{ $setting->currency_symbol }}{{ $plan->monthly_price }}

per month

@if($loggedAdmin->company->subscriptionPlan && $loggedAdmin->company->subscriptionPlan->id == $plan->id && $loggedAdmin->company->package_type == 'monthly' && $loggedAdmin->company->license_expired != 1)
Selected
@endif
{{ $plan->start_user_count }} - {{ $plan->end_user_count }} Users
@if(round($plan->monthly_price) > 0 && ($setting->stripe_status == 1 || $setting->paypal_status == 1)) @else @endif
@endforeach
Yearly Plans
@foreach($plans as $plan)

{{ $plan->plan_name }}

{{ $setting->currency_symbol }}{{ $plan->annual_price }}

per year

@if($loggedAdmin->company->subscriptionPlan && $loggedAdmin->company->subscriptionPlan->id == $plan->id && $loggedAdmin->company->package_type == 'annual' && $loggedAdmin->company->license_expired != 1)
Selected
@endif
{{ $plan->start_user_count }} - {{ $plan->end_user_count }} Users
@endforeach
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @stop @section('footerjs') {!! HTML::script('assets/global/plugins/uniform/jquery.uniform.min.js')!!} {!! HTML::script("assets/global/plugins/datatables/datatables.min.js")!!} {!! HTML::script("assets/global/plugins/datatables/plugins/bootstrap/datatables.bootstrap.js") !!} {!! HTML::script("assets/global/plugins/datatables/plugins/responsive/dataTables.responsive.js")!!} {!! HTML::script("assets/global/plugins/datatables/plugins/responsive/responsive.bootstrap.js")!!} {!! HTML::script("assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js")!!} {!! HTML::script("assets/global/plugins/select2/js/select2.js")!!} {!! HTML::script('assets/global/plugins/bootstrap-datepicker/js/bootstrap-datepicker.js')!!} {!! HTML::script('assets/global/plugins/bootstrap-wysihtml5/wysihtml5-0.3.0.js')!!} {!! HTML::script('assets/global/plugins/bootstrap-wysihtml5/bootstrap-wysihtml5.js')!!} @stop