mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-29 02:11:12 -06:00
19 lines
313 B
PHP
19 lines
313 B
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AccountType extends Model
|
|
{
|
|
|
|
//
|
|
public function accounts()
|
|
{
|
|
return $this->hasMany('FireflyIII\Models\Account');
|
|
}
|
|
|
|
public function getDates()
|
|
{
|
|
return ['created_at', 'updated_at'];
|
|
}
|
|
}
|