Add products from the group on bottom of page
This commit is contained in:
parent
fa7139dfd0
commit
3fb45aae20
2 changed files with 13 additions and 0 deletions
|
|
@ -4277,6 +4277,7 @@ $LANG = array(
|
|||
'email_sent' => 'E-mail sent, please check your inbox.',
|
||||
'one_time_purchases' => 'One time purchases',
|
||||
'recurring_purchases' => 'Recurring purchases',
|
||||
'you_might_be_interested_in_following' => 'You might be interested in following',
|
||||
);
|
||||
|
||||
return $LANG;
|
||||
|
|
|
|||
|
|
@ -81,6 +81,18 @@
|
|||
<span>{{ ctrans('texts.client_portal') }}</span>
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if($subscription->service()->getPlans()->count() - 1 > 1)
|
||||
<div class="flex flex-col mt-10">
|
||||
<p class="mb-4 uppercase leading-4 tracking-wide inline-flex items-center rounded-full text-xs font-medium">
|
||||
{{ ctrans('texts.you_might_be_interested_in_following') }}:
|
||||
</p>
|
||||
|
||||
@foreach($subscription->service()->getPlans() as $_subscription)
|
||||
<a class="block hover:underline" target="_blank" href="{{ route('client.subscription.purchase', $_subscription->hashed_id) }}">{{ $_subscription->name }}</a>
|
||||
@endforeach
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue