26 lines
921 B
PHP
26 lines
921 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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::name('admin.')->group(function () {
|
|
Route::namespace('Dashboard')->middleware('auth')->group(function () {
|
|
Route::get('', 'AdminPanelController')->name('home');
|
|
});
|
|
Route::name('auth.')->namespace('Auth')->group(function () {
|
|
Route::get('login', 'LoginController@login')->name('login');
|
|
Route::post('login', 'LoginController@authenticate')->name('authenticate');
|
|
Route::post('logout', 'LoginController@logout')->name('logout');
|
|
});
|
|
});
|