29 lines
734 B
PHP
29 lines
734 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
// web
|
|
Route::view('/', 'home');
|
|
|
|
// misc
|
|
Route::any('/maintenance', 'MaintenanceController@showPage');
|
|
Route::view('/javascript', 'javascript');
|
|
|
|
// client
|
|
Route::get('/asset', 'ContentController@fetchAsset');
|
|
|
|
// fallback
|
|
Route::fallback(function(){
|
|
return response()->view('errors.404', [], 404);
|
|
}); |