'object', ]; /** * @class \App\Models\PaymentHash $this * @property \App\Models\PaymentHash $data * @property \App\Modes\PaymentHash $hash 32 char length AlphaNum * @class \stdClass $data * @property string $raw_value */ /** * @return mixed */ public function invoices() { return $this->data->invoices; } /** * @return float|null */ public function amount_with_fee() { return $this->data->amount_with_fee; } /** * @return float */ public function credits_total() { return isset($this->data->credits) ? $this->data->credits : 0; } public function payment(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Payment::class)->withTrashed(); } public function fee_invoice(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Invoice::class, 'fee_invoice_id', 'id')->withTrashed(); } public function withData(string $property, $value): self { $this->data = array_merge((array) $this->data, [$property => $value]); // @phpstan-ignore-line $this->save();// @phpstan-ignore-line return $this; // @phpstan-ignore-line } }