mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
19 lines
347 B
PHP
19 lines
347 B
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PiggyBankRepetition extends Model
|
|
{
|
|
|
|
public function getDates()
|
|
{
|
|
return ['created_at', 'updated_at', 'startdate', 'targetdate'];
|
|
}
|
|
|
|
public function piggyBank()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\PiggyBank');
|
|
}
|
|
|
|
}
|