Show only Ladill app names in the mobile header.
Deploy Ladill Servers / deploy (push) Successful in 1m10s
Deploy Ladill Servers / deploy (push) Successful in 1m10s
Remove route-based page titles and the uppercase subtitle line so mobile headers display a single title like Ladill Bird. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -6,19 +6,13 @@ class MobileTopbar
|
|||||||
{
|
{
|
||||||
public static function resolve(): array
|
public static function resolve(): array
|
||||||
{
|
{
|
||||||
$config = config('mobile-topbar', []);
|
$appName = config('mobile-topbar.app_name', 'Ladill');
|
||||||
$subtitle = $config['app_name'] ?? 'Ladill';
|
|
||||||
$title = $config['default_title'] ?? 'Overview';
|
|
||||||
|
|
||||||
foreach ($config['patterns'] ?? [] as $pattern => $patternTitle) {
|
$title = $appName === 'Ladill'
|
||||||
if (request()->routeIs($pattern)) {
|
? 'Ladill'
|
||||||
$title = is_callable($patternTitle) ? $patternTitle() : $patternTitle;
|
: "Ladill {$appName}";
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'mobileTopbarSubtitle' => $subtitle,
|
|
||||||
'mobileTopbarTitle' => $title,
|
'mobileTopbarTitle' => $title,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,18 +2,4 @@
|
|||||||
|
|
||||||
return [
|
return [
|
||||||
'app_name' => 'Servers',
|
'app_name' => 'Servers',
|
||||||
'default_title' => 'Dashboard',
|
|
||||||
'patterns' => [
|
|
||||||
'servers.dashboard' => 'Dashboard',
|
|
||||||
'servers.search' => 'Search',
|
|
||||||
'servers.vps' => 'VPS',
|
|
||||||
'servers.dedicated' => 'Dedicated',
|
|
||||||
'servers.orders.*' => 'Orders',
|
|
||||||
'hosting.server-panel.*' => 'Server panel',
|
|
||||||
'account.wallet' => 'Wallet',
|
|
||||||
'account.billing' => 'Billing',
|
|
||||||
'account.team*' => 'Team',
|
|
||||||
'account.settings' => 'Settings',
|
|
||||||
'notifications.*' => 'Notifications',
|
|
||||||
],
|
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
@php
|
@php
|
||||||
$subtitle = $mobileTopbarSubtitle ?? null;
|
$title = $mobileTopbarTitle ?? 'Ladill';
|
||||||
$title = $mobileTopbarTitle ?? 'Overview';
|
|
||||||
@endphp
|
@endphp
|
||||||
<div class="min-w-0 flex-1 lg:hidden">
|
<div class="min-w-0 flex-1 lg:hidden">
|
||||||
@if ($subtitle)
|
|
||||||
<p class="text-xs font-semibold uppercase tracking-[0.18em] text-slate-400">{{ $subtitle }}</p>
|
|
||||||
@endif
|
|
||||||
<h1 class="truncate text-base font-semibold text-slate-900">{{ $title }}</h1>
|
<h1 class="truncate text-base font-semibold text-slate-900">{{ $title }}</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user