erp/routes/web.php

29 lines
703 B
PHP
Raw Normal View History

2022-07-23 17:07:13 +08:00
<?php
/*
|--------------------------------------------------------------------------
| 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 view('welcome');
});
2022-07-27 19:06:16 +08:00
Route::get('/home', function () {
return view('home');
})->name('home');
Route::get('/login', function () {
return view('welcome');
})->name('login');
Route::get('/register', function () {
return view('welcome');
})->name('register');