# fluent-support/trunk/app/Models/DataMetric.php

Fluent Support – Helpdesk &amp; Customer Support Ticket System, version trunk. 27 lines.

- Page: https://pluginprobe.com/plugins/fluent-support/trunk/code/app/Models/DataMetric.php
- Raw: https://pluginprobe.com/plugins/fluent-support/trunk/raw/app/Models/DataMetric.php
- Modified: 2021-11-12T14:57:38+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-support/trunk/code/app/Models/DataMetric.php#L10-L20`.

```php
<?php

namespace FluentSupport\App\Models;

class DataMetric extends Model
{
    protected $table = 'fs_data_metrix';

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'stat_date',
        'data_type',
        'agent_id',
        'replies',
        'active_tickets',
        'resolved_tickets',
        'unassigned_tickets',
        'close_to_average',
        'new_tickets'
    ];

}

```
