TODO finish

This commit is contained in:
szabomarton
2025-04-08 12:58:43 +02:00
parent de2f631051
commit 923c9efd39
8 changed files with 96 additions and 0 deletions

View File

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