I'm使用Laravel 5.2,並傳遞給我的控制器方法$要求:Laravel請求未定義的方法
namespace App\Http\Controllers;
use Input, Session, Exception, Request;
class WebController extends Controller {
public function myfunction(Request $request) {
$request->fullUrl();
}
}
但Laravel回我這個錯誤:
Call to undefined method Illuminate\Support\Facades\Request::fullUrl()
在文檔的5.2版本的所有是正確的: https://laravel.com/docs/5.2/requests
在Request.php文件,該方法fullUrl退出...
問題是什麼?