🛠️ Replace Livewire\Volt\Component with Livewire\Component across all Blade views for consistency with updated Livewire conventions.

This commit is contained in:
HolgerHatGarKeineNode
2026-01-17 16:12:07 +01:00
parent e5ea65fa77
commit eebe453f5a
53 changed files with 159 additions and 1177 deletions

View File

@@ -2,33 +2,32 @@
use App\Http\Controllers\Auth\VerifyEmailController;
use Illuminate\Support\Facades\Route;
use Livewire\Volt\Volt;
Route::middleware('guest')
->group(function () {
Volt::route('login', 'auth.login')
Route::livewire('/login', 'auth.login')
->name('login');
Volt::route('register', 'auth.register')
Route::livewire('/register', 'auth.register')
->name('register');
Volt::route('forgot-password', 'auth.forgot-password')
Route::livewire('/forgot-password', 'auth.forgot-password')
->name('password.request');
Volt::route('reset-password/{token}', 'auth.reset-password')
Route::livewire('/reset-password/{token}', 'auth.reset-password')
->name('password.reset');
});
Route::middleware('auth')
->group(function () {
Volt::route('verify-email', 'auth.verify-email')
Route::livewire('/verify-email', 'auth.verify-email')
->name('verification.notice');
Route::get('verify-email/{id}/{hash}', VerifyEmailController::class)
->middleware(['signed', 'throttle:6,1'])
->name('verification.verify');
Volt::route('confirm-password', 'auth.confirm-password')
Route::livewire('/confirm-password', 'auth.confirm-password')
->name('password.confirm');
});