Deploy Ladill Woo Manager / deploy (push) Successful in 51s
Free: 1 store and 20 products. Pro/Business mirrors Invoice pricing (GHS 49/149) with wallet renewals, Paystack prepay, session-based store switcher, and scoped UI. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
581 B
PHP
11 lines
581 B
PHP
@php $banner = config('woo.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
|