2020-12-24 01:28:38 +03:00

23 lines
371 B
PHP

<?php
namespace App\Models\Purchase;
use App\Models\Document\DocumentTotal;
/**
* @deprecated
* @see DocumentTotal
*/
class BillTotal extends DocumentTotal
{
public function getBillIdAttribute($value)
{
return $this->document_id;
}
public function setBillIdAttribute($value)
{
$this->attributes['document_id'] = $value;
}
}