Deploy Ladill Frontdesk / deploy (push) Successful in 1m5s
Use the shared settings page and card pattern for branch, team, buildings, and desks screens, with Settings breadcrumbs and a Branches & team hub card on the organization settings page.
21 lines
1.1 KiB
PHP
21 lines
1.1 KiB
PHP
<x-app-layout :title="$title">
|
|
<x-settings.page :title="$title" :description="$description">
|
|
<div class="mb-4 flex flex-wrap items-center gap-2 text-sm">
|
|
<a href="{{ route('frontdesk.settings') }}" class="text-slate-500 hover:text-slate-800">Settings</a>
|
|
<span class="text-slate-300">/</span>
|
|
<span class="font-medium text-slate-900">{{ $title }}</span>
|
|
</div>
|
|
|
|
<x-settings.card title="Upgrade to Pro">
|
|
<p class="text-sm text-slate-600">
|
|
GHS {{ number_format($proPriceMinor / 100, 0) }} / branch / month from your Ladill wallet —
|
|
provided visitor kiosks, multi-branch locations, team roles, integrations, and more.
|
|
</p>
|
|
<div class="mt-4 flex flex-wrap items-center gap-3">
|
|
<a href="{{ route('frontdesk.pro.index') }}" class="btn-primary">View Pro plans</a>
|
|
<a href="{{ route('frontdesk.wallet') }}" class="text-sm font-medium text-indigo-600 hover:text-indigo-800">Top up wallet</a>
|
|
</div>
|
|
</x-settings.card>
|
|
</x-settings.page>
|
|
</x-app-layout>
|