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