FleetCart/Modules/Setting/Entities/SettingTranslation.php
2023-12-03 14:07:47 +00:00

42 lines
755 B
PHP

<?php
namespace Modules\Setting\Entities;
use Modules\Support\Eloquent\TranslationModel;
class SettingTranslation extends TranslationModel
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['value'];
/**
* Get the value of the setting.
*
* @param mixed $value
*
* @return mixed
*/
public function getValueAttribute($value)
{
return unserialize($value);
}
/**
* Set the value of the setting.
*
* @param mixed $value
*
* @return mixed
*/
public function setValueAttribute($value)
{
$this->attributes['value'] = serialize($value);
}
}