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

45 lines
909 B
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
*
* @copyright Copyright (c) 2021. 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-10-22 15:24:18 +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()
{
return $this->belongsTo(Invoice::class, 'fee_invoice_id', 'id');
}
2020-08-25 15:06:38 +02:00
}