invoiceninja/app/Models/ExpenseCategory.php

39 lines
749 B
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Models;
2020-10-28 21:10:49 +11:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class ExpenseCategory extends BaseModel
{
use SoftDeletes;
protected $fillable = [
'name',
2021-01-05 15:41:43 +11:00
'color',
];
public function getEntityType()
{
return self::class;
}
/**
2020-10-28 21:10:49 +11:00
* @return BelongsTo
*/
public function expense()
{
2020-10-28 21:10:49 +11:00
return $this->belongsTo(Expense::class);
}
}