We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b58f1a0 + f8b29a3 commit a6ca2cdCopy full SHA for a6ca2cd
routes/web.php
@@ -1,5 +1,7 @@
1
<?php
2
3
-Route::get('/demo', static function () {
4
- return view('laravel-uikit::demo');
5
-})->name('demo');
+Route::middleware('web')->group(function () {
+ Route::get('/demo', static function () {
+ return view('laravel-uikit::demo');
6
+ })->name('demo');
7
+});
0 commit comments