amount = $amount; $this->client = $client; $this->company = $company; } /** * Execute the job. * * @return void */ public function handle() { MultiDB::setDB($this->company->db); $this->client->paid_to_date += $this->amount; $this->client->save(); } }