mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-18 12:30:35 +01:00
10 lines
232 B
PHP
10 lines
232 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\LegacyController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
// Route di fallback generale
|
|
Route::any('/legacy/{path}', [LegacyController::class, 'index'])
|
|
->name('legacy')
|
|
->where('path', '.*');
|