osb/app/Models/PaymentItem.php

36 lines
662 B
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\{NextKey,PushNew};
2020-07-27 04:49:59 +00:00
2018-05-20 12:53:14 +00:00
class PaymentItem extends Model
{
use PushNew;
2020-07-27 04:49:59 +00:00
const RECORD_ID = 'payment_item';
protected $dateFormat = 'U';
2020-07-27 04:49:59 +00:00
const CREATED_AT = 'date_orig';
const UPDATED_AT = 'date_last';
/* RELATIONS */
2020-07-27 04:49:59 +00:00
public function payment() {
return $this->belongsTo(Payment::class);
}
/* ATTRIBUTES */
/**
* If our amount is negative, and invoice_id is null, then this is a reversal.
*
* @param $value
* @return float
*/
public function getAllocAmtAttribute($value): float
{
return (is_null($this->invoice_id) && $value < 0) ? -$value : $value;
}
2018-05-20 12:53:14 +00:00
}