Files
OdiUp-CRM/routes/web.php

7 lines
135 B
PHP

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