Add branded boot splash (Ladill Mail style) on app pages
Deploy Ladill Transfer / deploy (push) Successful in 36s

InjectBootSplash middleware shows a self-branded loading splash once per session
while the app boots, then fades out.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
isaacclad
2026-06-25 22:16:01 +00:00
co-authored by Claude Opus 4.8
parent 0712b7d6c6
commit c9994129dc
3 changed files with 90 additions and 0 deletions
+1
View File
@@ -24,6 +24,7 @@ return Application::configure(basePath: dirname(__DIR__))
'platform.session' => \App\Http\Middleware\EnsurePlatformSession::class,
]);
$middleware->web(append: [
\App\Http\Middleware\InjectBootSplash::class,
\App\Http\Middleware\SetActingAccount::class,
]);
})