{{ __('Saas Plan') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
{{ $saas->title }} |
@endif
@endforeach
---|---|
{{ __('Price') }} / {{ __('Month') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->discounted_monthly_price < 1)
{{ __('Full Free') }}
@else
|
@endif
@endforeach
{{ __('Create Instructor Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->instructor > 0)
{{ $saas->instructor }} @else@endif |
@endif
@endforeach
{{ __('Create Student Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->student > 0)
{{ $saas->student }} @else@endif |
@endif
@endforeach
{{ __('Create Course Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->course > 0)
{{ $saas->course }} @else@endif |
@endif
@endforeach
{{ __('Create Bundle Courses') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->bundle_course > 0)
{{ $saas->bundle_course }} @else@endif |
@endif
@endforeach
{{ __('Create Subscription Courses') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->subscription_course > 0)
{{ $saas->subscription_course }} @else@endif |
@endif
@endforeach
{{ __('Hours of Consultancy') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
@if ($saas->consultancy > 0)
{{ $saas->consultancy }} @else@endif |
@endif
@endforeach
{{ __('Minimum Sale commission') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1))
{{ $saas->admin_commission }}% |
@endif
@endforeach
@php $matched = $organizationSaas->where('id', @$mySaasPackage->package_id)->first(); $disabledYearly = !is_null($matched) && $mySaasPackage->subscription_type == SUBSCRIPTION_TYPE_YEARLY ? true : false; $disabledMonthly = $disabledYearly ? true : (!is_null($matched) && $mySaasPackage->subscription_type == SUBSCRIPTION_TYPE_MONTHLY ? true : false); @endphp @foreach ($organizationSaas as $index => $saas) @if (!(get_option('saas_org_default_package_type') == 'yearly' && $saas->monthly_price <= 1)) | @php if ($disabledMonthly && $saas->id == $matched->id) { $disabledMonthly = false; } @endphp @endif @endforeach |
{{ __('Saas Plan') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
{{ $saas->title }} |
@endif
@endforeach
---|---|
{{ __('Price') }} / {{ __('Yearly') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->discounted_yearly_price < 1)
{{ __('Full Free') }}
@else
|
@endif
@endforeach
{{ __('Create Instructor Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->instructor > 0)
{{ $saas->instructor }} @else@endif |
@endif
@endforeach
{{ __('Create Student Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->student > 0)
{{ $saas->student }} @else@endif |
@endif
@endforeach
{{ __('Create Course Access') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->course > 0)
{{ $saas->course }} @else@endif |
@endif
@endforeach
{{ __('Create Bundle Courses') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->bundle_course > 0)
{{ $saas->bundle_course }} @else@endif |
@endif
@endforeach
{{ __('Create Subscription Courses') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->subscription_course > 0)
{{ $saas->subscription_course }} @else@endif |
@endif
@endforeach
{{ __('Hours of Consultancy') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
@if ($saas->consultancy > 0)
{{ $saas->consultancy }} @else@endif |
@endif
@endforeach
{{ __('Minimum Sale commission') }} |
@foreach ($organizationSaas as $index => $saas)
@if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1))
{{ $saas->admin_commission }}% |
@endif
@endforeach
@php $matched = $organizationSaas->where('id', @$mySaasPackage->package_id)->first(); $disabledYearly = !is_null($matched) && $mySaasPackage->subscription_type == SUBSCRIPTION_TYPE_YEARLY ? true : false; @endphp @foreach ($organizationSaas as $index => $saas) @if (!(get_option('saas_org_default_package_type') == 'monthly' && $saas->yearly_price <= 1)) | @php if ($disabledYearly && $saas->id == $matched->id) { $disabledYearly = false; } @endphp @endif @endforeach |