1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Models/TaxRate.php
2019-01-30 22:25:37 +11:00

51 lines
774 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class TaxRate.
*/
class TaxRate extends EntityModel
{
use SoftDeletes;
/**
* @var array
*/
protected $dates = ['deleted_at'];
/**
* @var array
*/
protected $fillable = [
'name',
'rate',
'is_inclusive',
];
/**
* @return mixed
*/
public function getEntityType()
{
return ENTITY_TAX_RATE;
}
/**
* @return mixed
*/
public function user()
{
return $this->belongsTo('App\Models\User')->withTrashed();
}
/**
* @return bool|string
*/
public function __toString()
{
return sprintf('%s: %s%%', $this->name, $this->rate);
}
}