Solution:
Use Laravel HTTP client for that, https://laravel.com/docs/master/http-client
public function store()
{
return view('view',[
'response' => Http::post(...)
])
}
Solution:
Use Laravel HTTP client for that, https://laravel.com/docs/master/http-client
public function store()
{
return view('view',[
'response' => Http::post(...)
])
}