14 lines
199 B
PHP
14 lines
199 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use SteelAnts\LaravelAuth\Traits\Authentication;
|
|
|
|
|
|
class AuthController
|
|
{
|
|
use Authentication;
|
|
|
|
protected string $redirectTo = "maintenance.planned";
|
|
}
|