Skip to content
View as Markdown

Meta Model

DB Table Name{wp_db_prefix}_fc_meta
SchemaCheck Schema
Source Filefluent-crm/app/Models/Meta.php
Name SpaceFluentCrm\App\Models
ClassFluentCrm\App\Models\Meta

Attributes

AttributeData TypeComment
idInteger
object_typeString
object_idInteger
keyString
valueText
created_atDate Time
updated_atDate 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'