kuvia/routes/web.php

19 lines
500 B
PHP
Raw Normal View History

2021-01-11 11:49:50 +00:00
<?php
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 () {
2021-01-11 12:21:28 +00:00
return view('public.register');
2021-01-11 11:49:50 +00:00
});