# fluent-boards/1.21/app/Models/Meta.php

FluentBoards – Project Management, Task Management, Goal Tracking, Kanban Board, and, Team Collaboration, version 1.21. 21 lines.

- Page: https://pluginprobe.com/plugins/fluent-boards/1.21/code/app/Models/Meta.php
- Raw: https://pluginprobe.com/plugins/fluent-boards/1.21/raw/app/Models/Meta.php
- Modified: 2024-05-31T06:41:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-boards/1.21/code/app/Models/Meta.php#L10-L20`.

```php
<?php

namespace FluentBoards\App\Models;

class Meta extends Model
{
    protected $table = 'fbs_metas';

    protected $guarded = ['id'];

    public function setValueAttribute($value)
    {
        $this->attributes['value'] = \maybe_serialize($value);
    }

    public function getValueAttribute($value)
    {
        return \maybe_unserialize($value);
    }
}

```
