migrants-nt-sec/routes/web.php

8 lines
137 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::fallback(function () {
return file_get_contents(public_path('index.html'));
});