| 1 | <?php | = | 1 | <?php |
| 2 | 2 | |||
| 3 | use Illuminate\Support\Facades\Route; | 3 | use Illuminate\Support\Facades\Route; | |
| 4 | 4 | |||
| 5 | /* | 5 | /* | |
| 6 | |-------------------------------------------------------------------------- | 6 | |-------------------------------------------------------------------------- | |
| 7 | | Web Routes | 7 | | Web Routes | |
| 8 | |-------------------------------------------------------------------------- | 8 | |-------------------------------------------------------------------------- | |
| 9 | | | 9 | | | |
| 10 | | Here is where you can register web routes for your application. These | 10 | | Here is where you can register web routes for your application. These | |
| 11 | | routes are loaded by the RouteServiceProvider within a group which | 11 | | routes are loaded by the RouteServiceProvider within a group which | |
| 12 | | contains the "web" middleware group. Now create something great! | 12 | | contains the "web" middleware group. Now create something great! | |
| 13 | | | 13 | | | |
| 14 | */ | 14 | */ | |
| 15 | 15 | |||
| 16 | Route::get('/{any}', 'ApplicationController')->where('any', '.*'); | <> | 16 | Route::get('/{any}', 'App\Http\Controllers\ApplicationController')->where('any', '.*'); |