mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-27 11:20:39 -06:00
38 lines
698 B
PHP
38 lines
698 B
PHP
|
<?php namespace FireflyIII\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
/**
|
||
|
* Class BudgetLimit
|
||
|
*
|
||
|
* @package FireflyIII\Models
|
||
|
*/
|
||
|
class BudgetLimit extends Model
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
||
|
*/
|
||
|
public function budget()
|
||
|
{
|
||
|
return $this->belongsTo('FireflyIII\Models\Budget');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return array
|
||
|
*/
|
||
|
public function getDates()
|
||
|
{
|
||
|
return ['created_at', 'updated_at', 'startdate'];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
||
|
*/
|
||
|
public function limitrepetitions()
|
||
|
{
|
||
|
return $this->hasMany('FireflyIII\Models\LimitRepetition');
|
||
|
}
|
||
|
|
||
|
}
|