Files
ladill-events/app/Support/MobileTopbar.php
T
isaaccladandCursor 3c995d70f8
Deploy Ladill Events / deploy (push) Successful in 30s
Show only Ladill app names in the mobile header.
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>
2026-06-07 16:44:11 +00:00

20 lines
343 B
PHP

<?php
namespace App\Support;
class MobileTopbar
{
public static function resolve(): array
{
$appName = config('mobile-topbar.app_name', 'Ladill');
$title = $appName === 'Ladill'
? 'Ladill'
: "Ladill {$appName}";
return [
'mobileTopbarTitle' => $title,
];
}
}