LAR_Maintenance/app/Http/Controllers/AuthController.php

14 lines
189 B
PHP
Raw Normal View History

2024-07-30 08:44:45 +00:00
<?php
namespace App\Http\Controllers;
use SteelAnts\LaravelAuth\Traits\Authentication;
class AuthController
{
use Authentication;
protected string $redirectTo = "dashboard";
2024-07-30 08:44:45 +00:00
}