add vue :(

This commit is contained in:
2026-09-07 16:04:27 +02:00
parent 425169722a
commit b65f46afd8
10 changed files with 483 additions and 55 deletions
+5 -5
View File
@@ -4,10 +4,6 @@ use Illuminate\Support\Facades\Route;
use Laravel\Socialite\Socialite;
use App\Models\User;
Route::get('/', function () {
return view('welcome');
});
Route::prefix('auth')->group(function () {
Route::get('/login', function () {
return Socialite::driver('authentik')->redirect();
@@ -29,4 +25,8 @@ Route::prefix('auth')->group(function () {
return redirect('/')->with(['user' => $new_user]);
// $user->token
});
});
});
Route::get('{all}',function(){
return view('vue');
})->where(['all' => '.*'])->name("vue");