Select {{ $currentPlan['project_type']['name'] }} plan

close
Update your Billing or Change your Subscription Plan below. @php $projectTypePlans = $subscriptionPlans->where('project_type_id', $currentPlan['project_type']['id']); if ($islogofly) { $requestPlans = $projectTypePlans->where('plan_cycle', 0); }else{ $monthlyPlans = $projectTypePlans->where('plan_cycle', 2); $quarterlyPlans = $projectTypePlans->where('plan_cycle', 3); $annualPlans = $projectTypePlans->where('plan_cycle', 5); } //dd($monthlyPlans->toArray()); @endphp
    @if ($islogofly)
  • Plans
  • @else
  • Monthly Plan
  • Quarterly Plan @if($user->parent_id == config('services.elite.special_user_id')) (Save 5%) @endif
  • Annual Plan (Save @if($user->parent_id == config('services.elite.special_user_id')) 10% @else 15%@endif)
  • @endif
@if ($islogofly)
@include('livewire.settings.inc.billing-plans', ['subsPlans' => $requestPlans, 'divide_by' => 1])
@else
@include('livewire.settings.inc.billing-plans', ['subsPlans' => $monthlyPlans, 'divide_by' => 1])
@include('livewire.settings.inc.billing-plans', ['subsPlans' => $quarterlyPlans, 'divide_by' => 3])
@include('livewire.settings.inc.billing-plans', ['subsPlans' => $annualPlans, 'divide_by' => 12])
@endif