Php/laravel/laravel5/リクエストパラメータ取得
提供: 初心者エンジニアの簡易メモ
パラメータ取得
use Illuminate\Http\Request; public function index(Request $request) { $request->get('page'); $request->url(); // ttp://localhost
ファサードでパラメータ取得
use Illuminate\Http\Request; public function index() { echo \Request::get('page'); echo Request::get('page');
\Requestとしないと以下エラーが出る可能性がある
production.ERROR: Non-static method Symfony\Component\HttpFoundation\Request::get() should not be called statically