# fluentform/6.2.7/app/Models/EntryMeta.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.7. 34 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.7/code/app/Models/EntryMeta.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.7/raw/app/Models/EntryMeta.php
- Modified: 2023-06-22T15:10:22+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/fluentform/6.2.7/code/app/Models/EntryMeta.php#L10-L20`.

```php
<?php

namespace FluentForm\App\Models;

class EntryMeta extends Model
{
    /**
     * The table associated with the model.
     *
     * @var string
     */
    protected $table = 'fluentform_submission_meta';

    /**
     * A formMeta is owned by a form.
     *
     * @return \FluentForm\Framework\Database\Orm\Relations\BelongsTo
     */
    public function form()
    {
        return $this->belongsTo(Form::class, 'form_id', 'id');
    }

    /**
     * A formMeta is owned by an entry.
     *
     * @return \FluentForm\Framework\Database\Orm\Relations\BelongsTo
     */
    public function entry()
    {
        return $this->belongsTo(Entry::class, 'response_id', 'id');
    }
}

```
