laravel/routes/web.php

17 lines
453 B
PHP
Raw Normal View History

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 20:55:08 +05:30
| 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!
2014-11-02 10:02:20 -06:00
|
*/
2016-03-23 17:04:42 -05:00
Route::get('/', function () {
return view('welcome');
});