mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-25 18:30:55 -06:00
54 lines
1.8 KiB
PHP
54 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* AccountType.php
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
*
|
|
* This software may be modified and distributed under the terms
|
|
* of the MIT license. See the LICENSE file for details.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
/**
|
|
* FireflyIII\Models\AccountType
|
|
*
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property string $type
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|Account[] $accounts
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\AccountType whereId($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\AccountType whereCreatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\AccountType whereUpdatedAt($value)
|
|
* @method static \Illuminate\Database\Query\Builder|\FireflyIII\Models\AccountType whereType($value)
|
|
* @mixin \Eloquent
|
|
*/
|
|
class AccountType extends Model
|
|
{
|
|
const DEFAULT = 'Default account';
|
|
const CASH = 'Cash account';
|
|
const ASSET = 'Asset account';
|
|
const EXPENSE = 'Expense account';
|
|
const REVENUE = 'Revenue account';
|
|
const INITIAL_BALANCE = 'Initial balance account';
|
|
const BENEFICIARY = 'Beneficiary account';
|
|
const IMPORT = 'Import account';
|
|
|
|
|
|
protected $dates = ['created_at', 'updated_at'];
|
|
|
|
//
|
|
/**
|
|
* @return HasMany
|
|
*/
|
|
public function accounts(): HasMany
|
|
{
|
|
return $this->hasMany('FireflyIII\Models\Account');
|
|
}
|
|
}
|