mirror of https://github.com/kcal-app/kcal.git
16 lines
505 B
PHP
16 lines
505 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Auth\AuthenticatedSessionController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Guest Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::middleware(['guest'])->group(function () {
|
|
Route::get('/login', [AuthenticatedSessionController::class, 'create'])->name('login');
|
|
Route::post('/login', [AuthenticatedSessionController::class, 'store']);
|
|
});
|