mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
31 lines
645 B
PHP
31 lines
645 B
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Budget extends Model
|
|
{
|
|
|
|
|
|
public function budgetlimits()
|
|
{
|
|
return $this->hasMany('FireflyIII\Models\BudgetLimit');
|
|
}
|
|
|
|
public function limitrepetitions()
|
|
{
|
|
return $this->hasManyThrough('FireflyIII\Models\LimitRepetition', 'BudgetLimit', 'budget_id');
|
|
}
|
|
|
|
public function transactionjournals()
|
|
{
|
|
return $this->belongsToMany('FireflyIII\Models\TransactionJournal', 'budget_transaction_journal', 'budget_id');
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo('FireflyIII\User');
|
|
}
|
|
|
|
|
|
}
|