You can redirect to an external URL with Laravels's redirect.
First import the Redirect to your controller and
use Illuminate\Support\Facades\Redirect;
return Redirect::away($redirectUrl)->with(['user_id'=>$user_id]);
would help you to send the request as a post with the needed params.