2015-08-30 00:04:23 +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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-09-02 04:49:08 +00:00
|
|
|
Route::get('/', 'PagesController@index');
|
2015-08-30 16:02:43 +00:00
|
|
|
|
2015-09-02 04:49:08 +00:00
|
|
|
Route::get('/about', 'PagesController@about');
|
|
|
|
|
|
|
|
Route::get('/generate', 'PagesController@generate');
|
2015-08-30 16:02:43 +00:00
|
|
|
|