completed the frontend dashboard component and bound it to the tenant admin pwa for the optimal onboarding experience.. Added a profile page.
This commit is contained in:
@@ -61,12 +61,13 @@ class HandleInertiaRequests extends Middleware
|
||||
],
|
||||
'supportedLocales' => $supportedLocales,
|
||||
'appUrl' => rtrim(config('app.url'), '/'),
|
||||
'sidebarOpen' => ! $request->hasCookie('sidebar_state') || $request->cookie('sidebar_state') === 'true',
|
||||
'sidebarOpen' => $request->cookie('sidebar_state', 'false') === 'true',
|
||||
'locale' => app()->getLocale(),
|
||||
'translations' => [
|
||||
'marketing' => __('marketing'),
|
||||
'auth' => __('auth'),
|
||||
'profile' => __('profile'),
|
||||
'dashboard' => __('dashboard'),
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user