First commit
This commit is contained in:
commit
7cf3558ba7
12933 changed files with 1180047 additions and 0 deletions
24
routes/test.php
Normal file
24
routes/test.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Livewire\Volt\Volt;
|
||||
|
||||
// Test-Route für Login-Komponente
|
||||
Route::get('/test-login', function () {
|
||||
return Volt::mount('test-login');
|
||||
})->name('test.login');
|
||||
|
||||
// Vereinfachte Login-Komponente ohne Flux
|
||||
Route::get('/login-simple', function () {
|
||||
return Volt::mount('auth.login-simple');
|
||||
})->name('login.simple');
|
||||
|
||||
// Debug-Komponente
|
||||
Route::get('/debug-login', function () {
|
||||
return Volt::mount('debug-login');
|
||||
})->name('debug.login');
|
||||
|
||||
// Einfache Test-Route ohne Volt
|
||||
Route::get('/simple-test', function () {
|
||||
return view('test-simple');
|
||||
})->name('simple.test');
|
||||
Loading…
Add table
Add a link
Reference in a new issue