XBackBone/core/routes/web.php
Sergio Brighenti 6d6923eb09 added tests
login working as expected
2024-08-25 01:29:02 +02:00

21 lines
615 B
PHP

<?php
use App\Livewire\Welcome;
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 and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::redirect('/', '/dashboard');
Route::group(['middleware' => 'auth'], function () {
Route::get('/dashboard', Welcome::class)->name('dashboard');
});