I have a method with a lot of code
public function createNewObject(Request $request) { // Code... } There is another method that I plan to call, but how to pass it to the createNewObject method as a Request argument?
public function deleteAndCreateObject() { $this->createNewObject(???); }