Thank you in advance,
I have one controller function like
public function storeBlog(Request $request)
{
// Here i am receiving file like $request->file('image');
}
Now I want to send that file to an API endpoint like
Http::post('http://example.com/v1/blog/store', $request->all());
I am getting all the request but not file, I know we need to pass POST
data as a multipart
but how that I don't know
can anyone help