darkmode
Hi everyone, How to enable darkmode only for admin users? thanks
Solution:Jump to solution
I think you need to create a middleware and apply it according to this role...
```php
public function handle(Request $request, Closure $next): Response
{...
2 Replies
Solution
I think you need to create a middleware and apply it according to this role...
It works, Thank you so much