Side Nav vs Top Nav per user?
I know this seems like an odd request but is there any way or plugin to basically toggle if its side nav or tap nav on a per user basis like a dark/light theme preference?
Solution:Jump to solution
You can store the preference in a session and use a middleware to handle this..
```php
public function handle(Request $request, Closure $next): Response
{...
2 Replies
Solution
You can store the preference in a session and use a middleware to handle this..
Add the middleware in your panel
$panel->middleware([CustomMiddleware:class])
:thinksmart:
Thank you good sir