mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-02-24 11:13:02 +01:00
43 lines
1.6 KiB
PHP
43 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
})->name('front');
|
|
|
|
// Authentication Routes
|
|
$this->get('login', 'Auth\LoginController@showLoginForm')->name('login');
|
|
$this->post('login', 'Auth\LoginController@login');
|
|
$this->post('logout', 'Auth\LoginController@logout')->name('logout');
|
|
|
|
// Registration Routes (disabled, use the `artisan registeruser` command)
|
|
//$this->get('register', 'Auth\RegisterController@showRegistrationForm')->name('register');
|
|
//$this->post('register', 'Auth\RegisterController@register');
|
|
|
|
// Password Reset Routes
|
|
$this->get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.request');
|
|
$this->post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email');
|
|
$this->get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset');
|
|
$this->post('password/reset', 'Auth\ResetPasswordController@reset');
|
|
|
|
Route::get('/home', 'HomeController@index')->name('home');
|
|
|
|
// Model routes
|
|
Route::group(['middleware' => ['auth']], function () {
|
|
Route::resource('categories', 'CategoryController');
|
|
Route::resource('links', 'LinkController');
|
|
Route::resource('notes', 'NoteController');
|
|
Route::resource('tags', 'TagController');
|
|
});
|
|
|