Deploy Ladill Hosting / deploy (push) Successful in 29s
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>
20 lines
343 B
PHP
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,
|
|
];
|
|
}
|
|
}
|