Is there any way to run mutiple independent function asynchronously in request controller without putting it in queue?
public function exampleFunction(Request $request){
// These are independent functions
$one = $this->oneFunction();
$two = $this->anotherFunction();
$three = $this->differentFunction();
return response()->json([
'one'=>$one,
'two'=> $two,
'three'=>$three
]);
}