# depicter/trunk/app/src/Database/Entity/Option.php

Depicter — Popup &amp; Slider Builder, version trunk. 29 lines.

- Page: https://pluginprobe.com/plugins/depicter/trunk/code/app/src/Database/Entity/Option.php
- Raw: https://pluginprobe.com/plugins/depicter/trunk/raw/app/src/Database/Entity/Option.php
- Modified: 2024-06-17T04:01:44+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/depicter/trunk/code/app/src/Database/Entity/Option.php#L10-L20`.

```php
<?php
namespace Depicter\Database\Entity;

use Averta\WordPress\Database\Entity\Model;

class Option extends Model
{
	/**
	 * Resource name.
	 *
	 * @var string
	 */
	protected $resource = 'depicter_options';

	/**
	 * Determines what fields can be saved without be explicitly.
	 *
	 * @var array
	 */
	protected $fillable = [
        'option_name',
        'option_value'
    ];

	protected $guard = [
        'id'
    ];
}

```
