PHP Classes

File: app/routes.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   MyDreamLife.eu   app/routes.php   Download  
File: app/routes.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: MyDreamLife.eu
Plan a life change to a different country
Author: By
Last change:
Date: 1 year ago
Size: 1,321 bytes
 

Contents

Class file image Download
<?php
/**
 * @author Pierre-Henry Soria <hi@ph7.me>
 * @copyright (c) 2017-2018, Pierre-Henry Soria. All Rights Reserved.
 * @license GNU General Public License; <https://www.gnu.org/licenses/gpl-3.0.en.html>
 */

use Core\Route;

Route::get('/', 'LifeGenerator@residence');
Route::get('/my-residence', 'LifeGenerator@residence');
Route::post('/my-nationality', 'LifeGenerator@nationality');
Route::post('/my-destination', 'LifeGenerator@destination');
Route::post('/my-gender', 'LifeGenerator@gender');
Route::post('/my-age', 'LifeGenerator@age');
Route::post('/my-lifestyle', 'LifeGenerator@lifestyle');
Route::post('/my-background', 'LifeGenerator@background');
Route::post('/job-type', 'LifeGenerator@job');
Route::post('/my-saving', 'LifeGenerator@saving');
Route::post('/availability', 'LifeGenerator@availability');
Route::post('/get-results', 'LifeGenerator@results');
Route::post('/confirmation', 'LifeGenerator@confirmation');

Route::get('/about', 'Page@about');
Route::get('/posts', 'Page@posts');
Route::get('/post', 'Page@post');

// Redirection
Route::location('/apps', 'https://docs.google.com/document/d/1HU1dUSix37K1f6COKQkMcDLeE72RZK8Y1yP8EFO8L30/');
Route::location('/podcast', 'https://itunes.apple.com/us/podcast/tropical-mba-location-independent-entrepreneurship/id325757845');