Commit b0334fd4 authored by Taylor Otwell's avatar Taylor Otwell

Use a standard routes file by default.

parent 2effec9c
<?php
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It's a breeze. Simply tell Laravel the URIs it should respond to
| and give it the Closure to execute when that URI is requested.
|
*/
Route::get('/', 'HomeController@index');
......@@ -23,7 +23,7 @@ class RouteServiceProvider extends ServiceProvider {
*/
public function map()
{
$this->get('/', 'HomeController@index');
require app_path().'/src/Http/routes.php';
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment