2016-05-20 01:57:45 -05:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2016-05-20 01:57:45 -05:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Models;
|
2015-02-27 09:48:33 -06:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2016-04-06 02:27:45 -05:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2015-02-27 09:48:33 -06:00
|
|
|
|
|
|
|
/**
|
2016-01-01 14:49:27 -06:00
|
|
|
* FireflyIII\Models\AccountType
|
2015-02-27 09:48:33 -06:00
|
|
|
*
|
2016-01-28 15:06:16 -06:00
|
|
|
* @property integer $id
|
|
|
|
* @property \Carbon\Carbon $created_at
|
|
|
|
* @property \Carbon\Carbon $updated_at
|
|
|
|
* @property string $type
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|Account[] $accounts
|
2016-03-12 00:36:23 -06:00
|
|
|
* @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
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
|
|
|
class AccountType extends Model
|
|
|
|
{
|
2016-05-13 08:53:39 -05:00
|
|
|
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';
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
|
2016-01-15 15:32:21 -06:00
|
|
|
protected $dates = ['created_at', 'updated_at'];
|
|
|
|
|
2015-02-27 09:48:33 -06:00
|
|
|
//
|
|
|
|
/**
|
2016-04-06 02:27:45 -05:00
|
|
|
* @return HasMany
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function accounts(): HasMany
|
2015-02-27 09:48:33 -06:00
|
|
|
{
|
|
|
|
return $this->hasMany('FireflyIII\Models\Account');
|
|
|
|
}
|
|
|
|
}
|