@php $planprice = !empty($plan) ? $plan->package_price_monthly : 0; $planpriceyearly = !empty($plan) ? $plan->package_price_yearly : 0; $currancy_symbol = admin_setting('defult_currancy_symbol'); $plan_modules = explode(',',$plan->modules); $currency_setting = json_encode(Arr::only(getAdminAllSetting(), ['site_currency_symbol_position','currency_format','currency_space','site_currency_symbol_name','defult_currancy_symbol','defult_currancy','float_number','decimal_separator','thousand_separator'])); @endphp @extends('layouts.main') @section('page-title') {{ __('Plan Payment') }} @endsection @section('page-breadcrumb') {{ __('Plan Payment') }} @endsection @section('page-action')
@endsection @push('scripts') @endpush @section('content')
{{ super_currency_format_with_sym($planprice) }} {{ __('/Month') }}
@if ((count($plan_modules) > 0) &&( count($modules) > 0))
{{ __('Modules') }}
@foreach ($modules as $module) @if(in_array($module->name,$plan_modules)) @if (!isset($module->display) || $module->display == true)
{{ $module->name }}

{{ $module->alias }}

{{ $module->description ?? '' }}

{{ __('View Details')}}
@endif @endif @endforeach @else

{{ __('Add-on Not Available') }}

{{ __('Click ') }}{{ __('here') }} {{ __('to back home') }}

@endif
{{$plan->name}}
{{ __('Payment Method') }}:
@if(admin_setting('bank_transfer_payment_is_on') == 'on' )

{!!admin_setting('bank_number') !!}

{{ __('This field is required')}}

{{ __('invalid form file') }}
{{ __('first, make a payment and take a screenshot or download the receipt and upload it.')}}
@endif @stack('company_plan_payment')
@endsection @push('scripts') {{-- if session is not empty --}} @if (isset($session) && !empty($session)) @endif @if (admin_setting('bank_transfer_payment_is_on') == 'on') @endif @endpush