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

38 lines
719 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',
];
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);
}
}