mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Add products from the group on bottom of page
This commit is contained in:
parent
fa7139dfd0
commit
3fb45aae20
@ -4277,6 +4277,7 @@ $LANG = array(
|
|||||||
'email_sent' => 'E-mail sent, please check your inbox.',
|
'email_sent' => 'E-mail sent, please check your inbox.',
|
||||||
'one_time_purchases' => 'One time purchases',
|
'one_time_purchases' => 'One time purchases',
|
||||||
'recurring_purchases' => 'Recurring purchases',
|
'recurring_purchases' => 'Recurring purchases',
|
||||||
|
'you_might_be_interested_in_following' => 'You might be interested in following',
|
||||||
);
|
);
|
||||||
|
|
||||||
return $LANG;
|
return $LANG;
|
||||||
|
@ -81,6 +81,18 @@
|
|||||||
<span>{{ ctrans('texts.client_portal') }}</span>
|
<span>{{ ctrans('texts.client_portal') }}</span>
|
||||||
</a>
|
</a>
|
||||||
@endif
|
@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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user