Félkész Login

This commit is contained in:
Sándor Máté Magony
2025-04-01 07:50:41 +02:00
parent 318014eb57
commit c66a7dd66e
14 changed files with 139 additions and 199 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\User;
class UserController extends Controller
{
public function index()
{
return response()->json(User::all());
}
}