laravel/app/Http/routes.php

17 lines
458 B
PHP
Raw Normal View History

2014-11-02 10:02:20 -06:00
<?php
/*
|--------------------------------------------------------------------------
2016-03-22 13:49:35 -05:00
| Application Routes
2014-11-02 10:02:20 -06:00
|--------------------------------------------------------------------------
|
2016-06-06 21:43:34 -05:00
| 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 given Closure or controller and enjoy the fresh air.
2014-11-02 10:02:20 -06:00
|
*/
2016-03-23 17:04:42 -05:00
Route::get('/', function () {
return view('welcome');
});