2019-10-22 23:39:48 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| 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!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
|
|
|
return view('app', [
|
2019-10-23 18:13:54 +08:00
|
|
|
'title' => config('v2board.app_name', env('APP_NAME'))
|
2019-10-22 23:39:48 +08:00
|
|
|
]);
|
|
|
|
});
|