mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
35 lines
706 B
PHP
35 lines
706 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use App\Utils\Traits\MakesHash;
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
||
|
|
||
|
class ExpenseCategory extends BaseModel
|
||
|
{
|
||
|
|
||
|
use SoftDeletes;
|
||
|
|
||
|
protected $fillable = [
|
||
|
'name',
|
||
|
];
|
||
|
|
||
|
/**
|
||
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||
|
*/
|
||
|
public function expense()
|
||
|
{
|
||
|
return $this->belongsTo('App\Models\Expense');
|
||
|
}
|
||
|
}
|