Backend/20250130/13ingatlan/routes/web.php
2025-03-10 13:58:21 +01:00

10 lines
220 B
PHP

<?php
use App\Http\Controllers\IngatlanController;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return view('welcome');
});
Route::get('/api/ingatlan', [IngatlanController::class, 'index']);