mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PiggyBankRepetition extends Model
|
|
{
|
|
|
|
public function piggyBank()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\PiggyBank');
|
|
}
|
|
|
|
}
|