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