refactor: use typed config helper for appName

This commit is contained in:
peaklabs-dev 2026-03-10 14:42:16 +01:00
parent 4aa0647224
commit 1bd2188671
No known key found for this signature in database

View file

@ -49,7 +49,7 @@ final class HandleInertiaRequests extends Middleware
{
return [
...parent::share($request),
'appName' => config('app.name'),
'appName' => config()->string('app.name'),
];
}
}