2015-08-30 16:03:25 +00:00
|
|
|
<?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 controller to call when that URI is requested.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
return view('home');
|
|
|
|
});
|
|
|
|
|
2015-09-02 04:49:08 +00:00
|
|
|
Route::get('/about', function () {
|
2015-08-30 16:03:25 +00:00
|
|
|
return view('about');
|
|
|
|
});
|
|
|
|
|
2015-09-02 04:49:08 +00:00
|
|
|
Route::get('/generate', 'GeneratorController@index');
|
|
|
|
|