Add mobile topbar titles and show Afia on all mobile headers.
Deploy Ladill Events / deploy (push) Successful in 57s

Route-based subtitle and page titles replace plain app labels in mobile topbars, and the Afia AI button is visible on mobile across topbars and mobile-page-header screens.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-07 16:29:44 +00:00
co-authored by Cursor
parent 849617da85
commit 99dbff200c
7 changed files with 96 additions and 9 deletions
+6
View File
@@ -6,6 +6,8 @@ use App\Models\QrCode;
use App\Policies\QrCodePolicy;
use Illuminate\Support\Facades\Gate;
use Illuminate\Support\ServiceProvider;
use App\Support\MobileTopbar;
use Illuminate\Support\Facades\View;
class AppServiceProvider extends ServiceProvider
{
@@ -17,5 +19,9 @@ class AppServiceProvider extends ServiceProvider
public function boot(): void
{
Gate::policy(QrCode::class, QrCodePolicy::class);
View::composer(['partials.topbar', 'partials.topbar-qr'], function ($view) {
$view->with(MobileTopbar::resolve());
});
}
}
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App\Support;
class MobileTopbar
{
public static function resolve(): array
{
$config = config('mobile-topbar', []);
$subtitle = $config['app_name'] ?? 'Ladill';
$title = $config['default_title'] ?? 'Overview';
foreach ($config['patterns'] ?? [] as $pattern => $patternTitle) {
if (request()->routeIs($pattern)) {
$title = is_callable($patternTitle) ? $patternTitle() : $patternTitle;
break;
}
}
return [
'mobileTopbarSubtitle' => $subtitle,
'mobileTopbarTitle' => $title,
];
}
}