Files
cachet-docker/routes/web.php
Laravel Shift e7b419c4fc Shift Routes
Laravel 5.3 now stores Routes in a top-level `routes` folder and
separates them into API, console, and web files.
2016-10-19 07:53:10 +00:00

17 lines
450 B
PHP
Executable File

<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/
Route::get('/', function () {
return view('welcome');
});