mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-03 12:47:17 -06:00
28 lines
515 B
PHP
28 lines
515 B
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PiggyBank extends Model
|
|
{
|
|
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('Account');
|
|
}
|
|
|
|
public function piggyBankEvents()
|
|
{
|
|
return $this->hasMany('PiggyBankEvent');
|
|
}
|
|
|
|
public function piggyBankRepetitions()
|
|
{
|
|
return $this->hasMany('PiggyBankRepetition');
|
|
}
|
|
|
|
public function reminders()
|
|
{
|
|
return $this->morphMany('Reminder', 'remindersable');
|
|
}
|
|
}
|