Deploy Ladill Mini / deploy (push) Successful in 23s
Staff-facing counter register at pos.ladill.com with catalog cart, cash and MoMo/card checkout via Ladill Pay, CRM timeline/import, invoice prefill, and Merchant catalog import. 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,
|
|
];
|
|
}
|
|
}
|