mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
32 lines
929 B
PHP
32 lines
929 B
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Public Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('website.home');
|
|
});
|
|
|
|
Route::get('/contact', function() {
|
|
return view('website.contact');
|
|
});
|
|
|
|
Route::post('/contact-submit', 'ContactController@postContactSubmit');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Content Management Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
// Authentication
|
|
Route::get('auth/login', 'Auth\AuthController@getLogin');
|
|
Route::post('auth/login', 'Auth\AuthController@postLogin');
|
|
Route::get('auth/logout', 'Auth\AuthController@getLogout');
|
|
|
|
// Registration
|
|
Route::get('auth/register', 'Auth\AuthController@getRegister');
|
|
Route::post('auth/register', 'Auth\AuthController@postRegister');
|