firefly-iii/app/Models/LimitRepetition.php

48 lines
1.0 KiB
PHP
Raw Normal View History

2015-02-27 09:48:33 -06:00
<?php namespace FireflyIII\Models;
2016-01-01 14:49:27 -06:00
use Carbon\Carbon;
2015-02-27 09:48:33 -06:00
use Illuminate\Database\Eloquent\Model;
/**
2016-01-01 14:49:27 -06:00
* FireflyIII\Models\LimitRepetition
2015-02-27 09:48:33 -06:00
*
2016-01-01 14:49:27 -06:00
* @property integer $id
* @property Carbon $created_at
* @property Carbon $updated_at
* @property integer $budget_limit_id
* @property Carbon $startdate
* @property Carbon $enddate
* @property float $amount
* @property-read BudgetLimit $budgetLimit
2015-02-27 09:48:33 -06:00
*/
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
}