@foreach ($plan_details as $plan) @php $filterPrice = $plan->min_price; if($plan->plan_cycle == 3){ $filterPrice = $plan->min_price/3; } elseif($plan->plan_cycle == 5){ $filterPrice = $plan->min_price/12; } $getTrialPrice = 49; if($plan->min_qty == 2){ $getTrialPrice = 99; } elseif($plan->min_qty == 5){ $getTrialPrice = 149; } @endphp

{{$plan->name ?? ''}}

{{--

${{$filterPrice ?? ''}}

--}}

${{$filterPrice}}

{{-- @if($plan_details->first()->plan_cycle != 0)

14-DAY TRIAL

@endif --}} @if($plan->min_qty > 1)

{{$plan->min_qty ?? 2}} projects at a time

{{-- @elseif($plan->min_qty == 5)

5 projects at a time

--}} @else

1 project at a time

@endif
  • @if($plan->min_qty > 1)
    Up to {{$plan->min_qty ?? 2}} Projects at a time
    {{-- @elseif($plan->min_qty == 5)
    Up to 5 Projects at a time
    --}} @else
    1 Project At a Time
    @endif

    Continuously start new ones as projects are completed

  • @foreach ($plan->plan_features ?? [] as $feature)
  • {{$feature ?? ''}}
  • @endforeach
@endforeach