Files
panel/routes/web.php

7 lines
135 B
PHP
Raw Normal View History

2025-08-04 16:33:07 +03:30
<?php
use Illuminate\Support\Facades\Route;
Route::get('{any?}', function() {
return view('application');
})->where('any', '.*');