我想在 Laravel 8 中制作暗模式。我可以使用图标打开或关闭暗模式。当我单击按钮时,暗模式可以工作,但是当我刷新页面时,它会恢复到原来的状态。如何通过将其保存在数据库或 cookie 中来稳定它?
黑暗模式
<body class="vertical-layout vertical-menu-modern **dark-layout** navbar-floating footer-static ">
灯光模式
<body class="vertical-layout vertical-menu-modern navbar-floating footer-static ">
我想静态地改变身体类的这一部分,使其成为暗模式或亮模式。