# fluent-community/2.8.1/app/Models/Contact.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 2.8.1. 53 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/2.8.1/code/app/Models/Contact.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.8.1/raw/app/Models/Contact.php
- Modified: 2024-11-07T17:55:56+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-community/2.8.1/code/app/Models/Contact.php#L10-L20`.

```php
<?php

namespace FluentCommunity\App\Models;


/**
 *  FluentCRM Contact Model
 *
 *  Database Model
 *
 * @package FluentCommunity\App\Models
 *
 * @version 1.1.0
 */
class Contact extends Model
{
    protected $table = 'fc_subscribers';

    protected $guarded = ['id'];

    protected $fillable = [
        'hash',
        'prefix',
        'first_name',
        'last_name',
        'user_id',
        'company_id',
        'email',
        'status', // pending / subscribed / bounced / unsubscribed; Default: subscriber
        'contact_type', // lead / customer
        'address_line_1',
        'address_line_2',
        'postal_code',
        'city',
        'state',
        'country',
        'phone',
        'timezone',
        'date_of_birth',
        'source',
        'life_time_value',
        'last_activity',
        'total_points',
        'latitude',
        'longitude',
        'ip',
        'created_at',
        'updated_at',
        'avatar'
    ];

}

```
