# fluentform/5.2.8/app/Models/FormAnalytics.php

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

- Page: https://pluginprobe.com/plugins/fluentform/5.2.8/code/app/Models/FormAnalytics.php
- Raw: https://pluginprobe.com/plugins/fluentform/5.2.8/raw/app/Models/FormAnalytics.php
- Modified: 2024-12-18T13:07:10+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/5.2.8/code/app/Models/FormAnalytics.php#L10-L20`.

```php
<?php

namespace FluentForm\App\Models;

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

    /**
     * Indicates if the model should be timestamped.
     *
     * @var bool
     */
    public $timestamps = false;

    /**
     * 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');
    }
}

```
