feat: replace logo with app name in navigation bar

Display APP_NAME from config instead of the ApplicationLogo SVG.
App name shared globally via Inertia HandleInertiaRequests middleware.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
mrKamoo
2026-06-19 16:41:55 +02:00
co-authored by Claude Sonnet 4.6
parent 51ac1b8353
commit 648749a69a
2 changed files with 4 additions and 6 deletions
@@ -38,6 +38,7 @@ class HandleInertiaRequests extends Middleware
'success' => fn () => $request->session()->get('success'),
'error' => fn () => $request->session()->get('error'),
],
'appName' => config('app.name'),
];
}
}