hypothetical/app/Http/routes.php

35 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2016-01-03 23:55:13 -05:00
Route::group(['middleware' => ['web']], function () {
/*
|--------------------------------------------------------------------------
| Public Routes
|--------------------------------------------------------------------------
*/
2016-01-03 23:55:13 -05:00
Route::get('/', function () {
return view('website.home');
});
2016-01-03 23:55:13 -05:00
Route::get('/contact', function() {
return view('website.contact');
});
2016-01-03 19:08:53 -05:00
2016-01-03 23:55:13 -05:00
Route::post('/contact-submit', 'ContactController@postContactSubmit');
2016-01-03 19:08:53 -05:00
2016-01-03 23:55:13 -05:00
/*
|--------------------------------------------------------------------------
| Content Management Routes
|--------------------------------------------------------------------------
*/
2016-01-03 23:55:13 -05:00
// Authentication
Route::get('auth/login', 'Auth\AuthController@getLogin');
Route::post('auth/login', 'Auth\AuthController@postLogin');
Route::get('auth/logout', 'Auth\AuthController@getLogout');
2016-01-03 23:55:13 -05:00
// Registration
Route::get('auth/register', 'Auth\AuthController@getRegister');
Route::post('auth/register', 'Auth\AuthController@postRegister');
});