Files
firefly-iii/app/Models/PiggyBankEvent.php

19 lines
317 B
PHP
Raw Normal View History

2015-02-06 04:52:16 +01:00
<?php namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
2015-02-06 05:04:06 +01:00
class PiggyBankEvent extends Model
{
2015-02-06 04:52:16 +01:00
2015-02-06 05:14:27 +01:00
public function piggyBank()
{
return $this->belongsTo('PiggyBank');
}
public function transactionJournal()
{
return $this->belongsTo('TransactionJournal');
}
2015-02-06 04:52:16 +01:00
}