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

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

- Page: https://pluginprobe.com/plugins/depicter/1.3.3/code/app/src/Database/Entity/Option.php
- Raw: https://pluginprobe.com/plugins/depicter/1.3.3/raw/app/src/Database/Entity/Option.php
- Modified: 2022-06-01T06:26:20+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/1.3.3/code/app/src/Database/Entity/Option.php#L10-L20`.

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

use TypeRocket\Models\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'
    ];
}

```
