1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Models/TaxRate.php
2016-05-03 23:02:29 +03:00

26 lines
439 B
PHP

<?php namespace App\Models;
use Auth;
use Illuminate\Database\Eloquent\SoftDeletes;
class TaxRate extends EntityModel
{
use SoftDeletes;
protected $dates = ['deleted_at'];
protected $fillable = [
'name',
'rate'
];
public function getEntityType()
{
return ENTITY_TAX_RATE;
}
public function user()
{
return $this->belongsTo('App\Models\User')->withTrashed();
}
}