# Meta Model | DB Table Name | {wp_db_prefix}_fc_meta | |---------------|--------------------------------------------------------------------------| | Schema | Check Schema | | Source File | fluent-crm/app/Models/Meta.php | | Name Space | FluentCrm\App\Models | | Class | FluentCrm\App\Models\Meta | ## Attributes
Attribute Data Type Comment
id Integer
object_type String
object_id Integer
key String
value Text
created_at Date Time
updated_at Date Time
## Usage Please check Model Basic for Common methods. ### Accessing Attributes ```php $meta = FluentCrm\App\Models\Meta::find(1); $meta->id; // returns id $meta->value; // returns meta value ....... ``` ## Fillable Attributes ```php 'object_type', 'object_id', 'key', 'value' ```