akaunting/modules/BC21/Models/Sale/InvoiceHistory.php
2020-12-24 01:28:38 +03:00

23 lines
384 B
PHP

<?php
namespace App\Models\Sale;
use App\Models\Document\DocumentHistory;
/**
* @deprecated
* @see DocumentHistory
*/
class InvoiceHistory extends DocumentHistory
{
public function getInvoiceIdAttribute($value)
{
return $this->document_id;
}
public function setInvoiceIdAttribute($value)
{
$this->attributes['document_id'] = $value;
}
}