mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
16 lines
222 B
PHP
16 lines
222 B
PHP
<?php
|
|
|
|
|
|
class AccountType extends Eloquent
|
|
{
|
|
|
|
public static $factory
|
|
= [
|
|
'description' => 'string'
|
|
];
|
|
|
|
public function accounts()
|
|
{
|
|
return $this->hasMany('Account');
|
|
}
|
|
}
|