From edc2f548c92cf4a39ad3318f33b422d94933266d Mon Sep 17 00:00:00 2001 From: Julian Prieber <60265788+JulianPrieber@users.noreply.github.com> Date: Mon, 8 Aug 2022 14:55:54 +0200 Subject: [PATCH] Update web.php --- routes/web.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 023aff9..532def5 100755 --- a/routes/web.php +++ b/routes/web.php @@ -99,6 +99,8 @@ Route::get('/studio/profile', [UserController::class, 'showProfile'])->name('sho Route::post('/studio/profile', [UserController::class, 'editProfile'])->name('editProfile'); }); +} + //Admin route Route::group([ 'middleware' => 'admin', @@ -161,6 +163,5 @@ Route::get('/updating', function (\Codedge\Updater\UpdaterManager $updater) { }); }); -} require __DIR__.'/auth.php';