Deploy Ladill Frontdesk / deploy (push) Successful in 48s
Gate multi-branch and team management behind paid plans, nest their routes under Settings, and remove them from the sidebar Administration section.
22 lines
1.2 KiB
PHP
22 lines
1.2 KiB
PHP
<x-app-layout :title="$title">
|
|
<div class="mx-auto max-w-lg">
|
|
<p class="text-xs font-semibold uppercase tracking-wide text-slate-400">Settings</p>
|
|
<h1 class="mt-1 text-xl font-semibold text-slate-900">{{ $title }}</h1>
|
|
<p class="mt-2 text-sm text-slate-600">{{ $description }}</p>
|
|
|
|
<div class="mt-6 rounded-2xl border border-indigo-200 bg-indigo-50 p-6">
|
|
<h2 class="font-semibold text-indigo-900">Upgrade to Pro</h2>
|
|
<p class="mt-2 text-sm text-indigo-800">
|
|
GHS {{ number_format($proPriceMinor / 100, 0) }} / branch / month from your Ladill wallet —
|
|
multi-branch locations, team roles, integrations, and more.
|
|
</p>
|
|
<a href="{{ route('frontdesk.pro.index') }}" class="btn-primary mt-4 inline-flex">View Pro plans</a>
|
|
<p class="mt-3 text-xs text-indigo-700">
|
|
<a href="{{ route('frontdesk.wallet') }}" class="underline">Top up your wallet</a> if you need more balance.
|
|
</p>
|
|
</div>
|
|
|
|
<a href="{{ route('frontdesk.settings') }}" class="mt-6 inline-block text-sm text-slate-600 hover:text-slate-900">← Back to settings</a>
|
|
</div>
|
|
</x-app-layout>
|