initial commit
This commit is contained in:
16
app/Http/Controllers/RootController.php
Normal file
16
app/Http/Controllers/RootController.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Inertia\Inertia;
|
||||
|
||||
class RootController extends Controller
|
||||
{
|
||||
// Muestra Login
|
||||
public function index()
|
||||
{
|
||||
return Inertia::render('Auth/Login', [
|
||||
'canResetPassword' => false,
|
||||
'status' => session('status'),
|
||||
]); }
|
||||
}
|
||||
Reference in New Issue
Block a user