1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Models/ExpenseCategory.php

39 lines
736 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)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
2020-10-28 11:10:49 +01:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class ExpenseCategory extends BaseModel
{
use SoftDeletes;
protected $fillable = [
'name',
2021-01-05 05:41:43 +01:00
'color',
];
public function getEntityType()
{
return self::class;
}
/**
2020-10-28 11:10:49 +01:00
* @return BelongsTo
*/
public function expense()
{
2020-10-28 11:10:49 +01:00
return $this->belongsTo(Expense::class);
}
}