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

39 lines
761 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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
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
];
public function invoices()
{
return $this->data;
2020-08-25 15:06:38 +02:00
}
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
}