request('variable')
/** resources/my_view.blade.php */
{{ request()->id }}
/** resources/my_view.blade.php */
{{ request()->id }}
{{ app('request')->input('a') }}
Route::get('/posts/{post}/comments/{comment}', function ($postId, $commentId) {
return view('name of the view')->with('postId',$postId);
});