瀏覽代碼

Convert to new helper methods

Laravel 5 added several new helper functions, including:

- `view()`
- `response()`
- `redirect()`
- `config()`
- `abort()`

Review the [helpers][1] documentation for more details.

[1]: https://laravel.com/docs/5.0/helpers
Shift 3 年之前
父節點
當前提交
3dac9828c8
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      routes/web.php

+ 2 - 2
routes/web.php

@@ -13,8 +13,8 @@ use Illuminate\Http\Request;
 |
 */
 
-if (\Config::get('app.url') !== 'http://localhost') {
-    URL::forceRootUrl(\Config::get('app.url'));
+if (config('app.url') !== 'http://localhost') {
+    URL::forceRootUrl(config('app.url'));
 }
 
 Route::get('/userselect/{user}', 'Auth\LoginController@setUser')->name('user.set');