request = $request; $this->client = $client; } /** * Execute the job. * * @return void */ public function handle(ClientRepository $clientRepo, ClientContactRepository $clientContactRepo) : ?Client { $client = $clientRepo->save($this->request, $this->client); $contacts = $clientContactRepo->save($this->request->input('contacts'), $client); } }