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\PiggyBankEvent
|
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 $piggy_bank_id
|
|
|
|
* @property integer $transaction_journal_id
|
|
|
|
* @property Carbon $date
|
|
|
|
* @property float $amount
|
2016-01-02 02:47:01 -06:00
|
|
|
* @property PiggyBank $piggyBank
|
2016-01-01 14:49:27 -06:00
|
|
|
* @property-read TransactionJournal $transactionJournal
|
2015-02-27 09:48:33 -06:00
|
|
|
*/
|
|
|
|
class PiggyBankEvent extends Model
|
|
|
|
{
|
|
|
|
|
2016-01-15 16:12:52 -06:00
|
|
|
protected $dates = ['created_at', 'updated_at', 'date'];
|
2015-03-02 13:05:28 -06:00
|
|
|
protected $fillable = ['piggy_bank_id', 'transaction_journal_id', 'date', 'amount'];
|
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 piggyBank()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\PiggyBank');
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function transactionJournal()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('FireflyIII\Models\TransactionJournal');
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|