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