@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 Assign') }} @endsection @section('page-breadcrumb') {{ __('Plan Assign') }} @endsection @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 }}

{{ isset($module->description) ? $module->description : '' }}

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

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

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

@endif
{{$plan->name}}
{{ __('Payment Method') }}:
@endsection @push('scripts') @endpush