@foreach($subscription_plans as $key => $plan) @php $discOffer = ''; @endphp
@if($plan->min_qty == 2)
2x output
@else
recommended
@endif

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

{{$plan->min_qty ?? ''}} x Content Project / Day

{{-- @if($plan->min_qty != 2)

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

@endif --}}
{{-- @if($plan->min_qty == 2) --}}

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

Per Month

{{-- @else @php $discOffer = 'starter-content'; @endphp

$99

For First Month

@endif --}}
@if($plan->min_qty == 2)
Everything in Growth+
@else
Everything in Starter+
@endif
    @foreach (unserialize($plan->plan_features) ?? [] as $key => $feature)
  • {{$feature ??''}}
  • @endforeach
@endforeach