8 lines
162 B
Plaintext
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', '.*');
|