15 lines
296 B
PHP
15 lines
296 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Models\Ingatlan;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class IngatlanController extends Controller
|
|
{
|
|
public function index(): JsonResponse{
|
|
return response()->json(Ingatlan::getAllWithCategory(), 200);
|
|
}
|
|
}
|