1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Models/ExpenseCategory.php
2016-07-06 21:35:16 +03:00

45 lines
738 B
PHP

<?php namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class ExpenseCategory
*/
class ExpenseCategory extends EntityModel
{
// Expense Categories
use SoftDeletes;
/**
* @var array
*/
protected $fillable = [
'name',
];
/**
* @return mixed
*/
public function getEntityType()
{
return ENTITY_EXPENSE_CATEGORY;
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function expense()
{
return $this->belongsTo('App\Models\Expense');
}
/**
* @return string
*/
public function getRoute()
{
return "/expense_categories/{$this->public_id}/edit";
}
}