Files
ladill-hosting/resources/views/partials/mobile-topbar-title.blade.php
T
isaaccladandCursor d3a379d5bc
Deploy Ladill Hosting / deploy (push) Successful in 26s
Add mobile topbar titles and show Afia on all mobile headers.
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>
2026-06-07 16:30:31 +00:00

11 lines
370 B
PHP

@php
$subtitle = $mobileTopbarSubtitle ?? null;
$title = $mobileTopbarTitle ?? 'Overview';
@endphp
<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>
</div>