Files
panel/routes/web.php
2025-08-04 16:33:07 +03:30

7 lines
135 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::get('{any?}', function() {
return view('application');
})->where('any', '.*');