making app name camelcase in inertia middleware

This commit is contained in:
2022-07-19 14:11:36 -06:00
parent 2b13367970
commit 374ea35e42

View File

@ -51,7 +51,7 @@ class HandleInertiaRequests extends Middleware
}
return array_merge(parent::share($request), [
'app_name' => config('app.name'),
'appName' => config('app.name'),
'notifications' => $notifications,
'unreadNotifications' => $unreadNotifications,
]);