Erster Upload

This commit is contained in:
Malek Tellissi
2026-09-11 01:17:47 +02:00
commit 400172cdde
171 changed files with 18844 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
use App\Http\Controllers\Api\LotController;
use Illuminate\Support\Facades\Route;
Route::get('/lot/{lot_number}', [LotController::class, 'show'])
->middleware('throttle:30,1')
->name('api.lot');