33 lines
1.0 KiB
PHP
33 lines
1.0 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
use App\Http\Controllers\HomeController;
|
|
use App\Http\Controllers\Auth\LoginController;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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!
|
|
|
|
|
*/
|
|
|
|
Auth::routes([
|
|
'login' => true,
|
|
'logout' => true,
|
|
'register' => true,
|
|
'reset' => true, // for resetting passwords
|
|
'confirm' => true, // for additional password confirmations
|
|
'verify' => true, // for email verification
|
|
]);
|
|
Route::get('logout',[LoginController::class,'logout']);
|
|
|
|
Route::get('/',[HomeController::class,'welcome']);
|
|
Route::get('network/{name}',[HomeController::class,'network']);
|
|
|
|
Route::get('home',[HomeController::class,'home']); |