Files
SAE-BUT2-backend/routes/web.php
T

8 lines
162 B
PHP

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