custom email verified

This commit is contained in:
Benjamin Takats
2022-12-01 20:54:03 +01:00
parent fe6b95c2d1
commit 6963440e10
3 changed files with 50 additions and 26 deletions

View File

@@ -2,24 +2,14 @@
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return to_route('search.city', ['country' => 'de']);
})
->name('welcome');
Route::get('/auth/ln', \App\Http\Livewire\Auth\LNUrlAuth::class)
->name('auth.ln');
->name('auth.ln')
->middleware('guest');
Route::get('/{country:code}/suche/stadt', \App\Http\Livewire\Frontend\SearchCity::class)
->name('search.city');