firefly-iii/app/models/AccountType.php

29 lines
1000 B
PHP
Raw Normal View History

<?php
2014-07-15 15:16:29 -05:00
/**
* AccountType
*
2014-07-30 00:14:00 -05:00
* @property integer $id
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property string $description
2014-07-15 15:16:29 -05:00
* @property-read \Illuminate\Database\Eloquent\Collection|\Account[] $accounts
* @method static \Illuminate\Database\Query\Builder|\AccountType whereId($value)
* @method static \Illuminate\Database\Query\Builder|\AccountType whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\AccountType whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\AccountType whereDescription($value)
2014-07-15 15:16:29 -05:00
*/
2014-07-09 06:19:30 -05:00
class AccountType extends Eloquent
{
2014-07-09 06:19:30 -05:00
public static $factory
= [
'description' => 'string'
];
public function accounts()
{
return $this->hasMany('Account');
}
}