Deploy Ladill Events / deploy (push) Successful in 42s
Cut ticket checkouts off Ladill Pay, settle to merchant gateways at 0% platform fee, and mirror Invoice freemium pricing (GHS 49 / 149). Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
584 B
PHP
11 lines
584 B
PHP
@php $banner = config('events.upgrade_banner'); @endphp
|
|
@if (empty($hasPaidPlan) && ! empty($banner))
|
|
<div class="flex flex-col gap-3 rounded-2xl border border-indigo-200 bg-gradient-to-r from-indigo-50 to-emerald-50 px-5 py-4 sm:flex-row sm:items-center sm:justify-between">
|
|
<div>
|
|
<p class="font-semibold text-slate-900">{{ $banner['title'] }}</p>
|
|
<p class="mt-0.5 text-sm text-slate-600">{{ $banner['description'] }}</p>
|
|
</div>
|
|
<a href="{{ route($banner['route']) }}" class="btn-primary shrink-0">View plans</a>
|
|
</div>
|
|
@endif
|