added things
This commit is contained in:
8
20250130/13ingatlan/routes/console.php
Normal file
8
20250130/13ingatlan/routes/console.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
10
20250130/13ingatlan/routes/web.php
Normal file
10
20250130/13ingatlan/routes/web.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\IngatlanController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
});
|
||||
|
||||
Route::get('/api/ingatlan', [IngatlanController::class, 'index']);
|
||||
Reference in New Issue
Block a user