2025-10-06 19:37:32 +03:00

8 lines
162 B
Plaintext

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