Make group section use button instead of plain links

This commit is contained in:
Benjamin Beganović 2021-07-08 13:12:20 +02:00
parent 3fb45aae20
commit 06bb3b0320

View File

@ -88,9 +88,11 @@
{{ ctrans('texts.you_might_be_interested_in_following') }}: {{ ctrans('texts.you_might_be_interested_in_following') }}:
</p> </p>
@foreach($subscription->service()->getPlans() as $_subscription) <div class="mt-4 space-x-2">
<a class="block hover:underline" target="_blank" href="{{ route('client.subscription.purchase', $_subscription->hashed_id) }}">{{ $_subscription->name }}</a> @foreach($subscription->service()->getPlans() as $_subscription)
@endforeach <a class="border mt-4 bg-white rounded py-2 px-4 hover:bg-gray-100" target="_blank" href="{{ route('client.subscription.purchase', $_subscription->hashed_id) }}">{{ $_subscription->name }}</a>
@endforeach
</div>
</div> </div>
@endif @endif
</div> </div>