v2board/routes/web.php

43 lines
1.6 KiB
PHP
Raw Normal View History

2019-10-29 15:33:36 +08:00
<?php
2020-01-11 13:36:52 +08:00
2019-12-05 02:37:32 +08:00
use Illuminate\Http\Request;
2020-01-11 13:36:52 +08:00
2019-10-29 15:33:36 +08:00
/*
|--------------------------------------------------------------------------
| 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!
|
*/
2019-12-05 02:37:32 +08:00
Route::get('/', function (Request $request) {
2020-02-08 16:38:03 +08:00
if (config('v2board.app_url') && config('v2board.safe_mode_enable', 0)) {
2019-12-16 13:35:59 +08:00
if ($request->server('HTTP_HOST') !== parse_url(config('v2board.app_url'))['host']) {
2019-12-16 13:40:14 +08:00
abort(403);
2019-12-16 13:35:59 +08:00
}
2019-12-05 02:37:32 +08:00
}
2019-10-29 15:33:36 +08:00
return view('app', [
2019-11-18 19:52:30 +08:00
'title' => config('v2board.app_name', 'V2Board'),
2020-02-17 03:35:03 +08:00
'theme_sidebar' => config('v2board.frontend_theme_sidebar', 'light'),
'theme_header' => config('v2board.frontend_theme_header', 'dark'),
'theme_color' => config('v2board.frontend_theme_color', 'default'),
2020-01-20 16:43:34 +08:00
'backgroun_url' => config('v2board.frontend_background_url'),
2020-02-13 16:22:30 +08:00
'verison' => config('app.version'),
2020-02-12 23:36:40 +08:00
'description' => config('v2board.app_description', 'V2Board is best')
2019-10-29 15:33:36 +08:00
]);
});
2020-02-13 16:22:30 +08:00
Route::get('/admin', function () {
return view('admin', [
'title' => config('v2board.app_name', 'V2Board'),
2020-02-17 03:35:03 +08:00
'theme_sidebar' => config('v2board.frontend_theme_sidebar', 'light'),
'theme_header' => config('v2board.frontend_theme_header', 'dark'),
'theme_color' => config('v2board.frontend_theme_color', 'default'),
2020-02-13 16:22:30 +08:00
'backgroun_url' => config('v2board.frontend_background_url'),
'verison' => config('app.version')
]);
});