añadido crd para Song y transladada la logica de /gallery a un controller

This commit is contained in:
2025-03-27 00:10:40 -03:00
parent c8d64406f5
commit 55b130edad
19 changed files with 464 additions and 80 deletions

View File

@@ -3,14 +3,17 @@
namespace App\Http\Controllers;
use Inertia\Inertia;
use Inertia\Response;
class RootController extends Controller
{
// Muestra Login
public function index()
public function index(): Response
{
return Inertia::render('Auth/Login', [
'canResetPassword' => false,
'status' => session('status'),
]); }
]);
}
}