| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentBoards\App\Models; |
| 4 |
|
| 5 |
class Meta extends Model |
| 6 |
{ |
| 7 |
protected $table = 'fbs_metas'; |
| 8 |
|
| 9 |
protected $guarded = ['id']; |
| 10 |
|
| 11 |
public function setValueAttribute($value) |
| 12 |
{ |
| 13 |
$this->attributes['value'] = \maybe_serialize($value); |
| 14 |
} |
| 15 |
|
| 16 |
public function getValueAttribute($value) |
| 17 |
{ |
| 18 |
return \maybe_unserialize($value); |
| 19 |
} |
| 20 |
} |
| 21 |
|