1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/PaymentHash.php

52 lines
1.1 KiB
PHP
Raw Normal View History

2020-08-25 15:06:38 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-08-25 15:06:38 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2020-08-25 15:06:38 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-08-25 15:06:38 +02:00
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PaymentHash extends Model
{
protected $guarded = ['id'];
2020-08-30 14:00:19 +02:00
2020-08-25 15:06:38 +02:00
protected $casts = [
'data' => 'object',
2020-08-25 15:06:38 +02:00
];
2020-08-25 15:06:38 +02:00
public function invoices()
{
2020-10-22 15:24:18 +02:00
return $this->data->invoices;
2020-08-25 15:06:38 +02:00
}
2020-10-13 14:28:30 +02:00
2021-01-06 06:54:04 +01:00
public function credits_total()
{
return isset($this->data->credits) ? $this->data->credits : 0;
}
2020-10-13 14:28:30 +02:00
public function payment()
{
return $this->belongsTo(Payment::class)->withTrashed();
}
public function fee_invoice()
{
2022-03-04 23:21:17 +01:00
return $this->belongsTo(Invoice::class, 'fee_invoice_id', 'id')->withTrashed();
2020-10-13 14:28:30 +02:00
}
2021-07-26 17:03:28 +02:00
2021-07-29 15:13:38 +02:00
public function withData(string $property, $value): self
2021-07-26 17:03:28 +02:00
{
$this->data = array_merge((array) $this->data, [$property => $value]);
$this->save();
return $this;
}
2020-08-25 15:06:38 +02:00
}