firefly-iii/app/Models/LimitRepetition.php

42 lines
762 B
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Class LimitRepetition
*
2015-05-23 10:11:16 -05:00
* @codeCoverageIgnore
*
2015-02-27 09:48:33 -06:00
* @package FireflyIII\Models
*/
class LimitRepetition extends Model
{
2015-05-23 10:11:16 -05:00
protected $hidden = ['amount_encrypted'];
2015-02-27 09:48:33 -06:00
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function budgetLimit()
{
return $this->belongsTo('FireflyIII\Models\BudgetLimit');
}
2015-05-23 10:11:16 -05:00
/**
* @return array
*/
public function getDates()
{
return ['created_at', 'updated_at', 'startdate', 'enddate'];
}
2015-05-23 01:46:46 -05:00
/**
* @param $value
*/
public function setAmountAttribute($value)
{
2015-05-24 01:00:40 -05:00
$this->attributes['amount'] = strval(round($value, 2));
2015-05-23 01:46:46 -05:00
}
2015-02-27 09:48:33 -06:00
}