Files
SAE-BUT2-backend/routes/web.php
T
2026-07-15 18:51:43 +02:00

8 lines
162 B
PHP
Executable File

<?php
use Illuminate\Support\Facades\Route;
Route::get('/{any}', function () {
return file_get_contents(public_path('index.html'));
})->where('any', '.*');