@foreach($monthlySubscriptions as $monthlyPlan)
@endforeach
SAVE 20%
@foreach($annuallySubscriptions as $annualPlan)
@endforeach
@foreach($subscriptionPlans as $plan)
@php
$type = 'Monthly';
$price = $plan->price;
if($plan->type=='Annually'):
$type = 'Annually';
$price = $plan->price * 12;
endif;
@endphp
${{$price.'/'.$type}}
10DLC brand charge |
{{($plan->id <= 2 ? '+' : '' )}}
{{$plan->onbord_charge}}
|
10DLC campaign charge |
{{($plan->id <= 2 ? '+' : '' )}}
{{$plan->dlc10}}
|
Local number charge |
{{$plan->local_number}} |
@endforeach
@foreach($subscriptionPlans as $plan)
10DLC brand charge: {{($plan->id <= 2 ? '+' : '')}} {{$plan->onbord_charge}}
10DLC campaign charge: {{($plan->id <= 2 ? '+' : '')}} {{$plan->dlc10}}
Local number charge: {{$plan->local_number}}
@endforeach