workoutgenerator-app/app/Http/routes.php~

24 lines
575 B
PHP
Raw Normal View History

<?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 () {
return view('about');
});
2015-09-02 04:49:08 +00:00
Route::get('/generate', 'GeneratorController@index');