2014-11-02 10:02:20 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2016-07-14 09:36:17 -05:00
|
|
|
| Web Routes
|
2014-11-02 10:02:20 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2016-10-27 04:40:15 +00:00
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
2016-10-27 09:39:51 -05:00
|
|
|
| contains the "web" middleware group. Now create something great!
|
2014-11-02 10:02:20 -06:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-03-23 17:04:42 -05:00
|
|
|
Route::get('/', function () {
|
|
|
|
return view('welcome');
|
2015-12-09 11:12:27 -06:00
|
|
|
});
|