mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-27 01:11:37 -06:00
50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
<?php namespace FireflyIII\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* FireflyIII\Models\BudgetLimit
|
|
*
|
|
* @property integer $id
|
|
* @property \Carbon\Carbon $created_at
|
|
* @property \Carbon\Carbon $updated_at
|
|
* @property integer $budget_id
|
|
* @property \Carbon\Carbon $startdate
|
|
* @property float $amount
|
|
* @property boolean $repeats
|
|
* @property string $repeat_freq
|
|
* @property-read Budget $budget
|
|
* @property-read \Illuminate\Database\Eloquent\Collection|LimitRepetition[] $limitrepetitions
|
|
*/
|
|
class BudgetLimit extends Model
|
|
{
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'startdate'];
|
|
protected $hidden = ['amount_encrypted'];
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
*/
|
|
public function budget()
|
|
{
|
|
return $this->belongsTo('FireflyIII\Models\Budget');
|
|
}
|
|
|
|
/**
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
*/
|
|
public function limitrepetitions()
|
|
{
|
|
return $this->hasMany('FireflyIII\Models\LimitRepetition');
|
|
}
|
|
|
|
/**
|
|
* @param $value
|
|
*/
|
|
public function setAmountAttribute($value)
|
|
{
|
|
$this->attributes['amount'] = strval(round($value, 2));
|
|
}
|
|
|
|
}
|