new commit

This commit is contained in:
fiqhpratama
2024-11-27 11:16:45 +07:00
parent 8435faf0e9
commit 453d9bb470
10880 changed files with 2249737 additions and 72 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
use Illuminate\Support\Facades\Route;
use JeroenNoten\LaravelAdminLte\Http\Controllers\DarkModeController;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your package. These
| routes are loaded by your package ServiceProvider within a group which
| contains the "web" middleware group.
|
*/
//-----------------------------------------------------------------------------
// Dark Mode routes.
//-----------------------------------------------------------------------------
if (! config('adminlte.disable_darkmode_routes', false)) {
Route::post('/darkmode/toggle', [DarkModeController::class, 'toggle'])
->name('darkmode.toggle');
}