firefly-iii/app/Models/Preference.php

24 lines
403 B
PHP
Raw Normal View History

2015-02-05 21:52:16 -06:00
<?php namespace FireflyIII\Models;
use Illuminate\Database\Eloquent\Model;
2015-02-05 22:04:06 -06:00
class Preference extends Model
{
2015-02-05 21:52:16 -06:00
2015-02-05 22:14:27 -06:00
public function getDataAttribute($value)
{
return json_decode($value);
}
public function setDataAttribute($value)
{
$this->attributes['data'] = json_encode($value);
}
public function user()
{
return $this->belongsTo('User');
}
2015-02-05 21:52:16 -06:00
}