index of
/
home
/
thefkyzp
/
www
/
wp-content
/
plugins
/
fluentform
/
app
/
Models
/
File: /home/thefkyzp/www/wp-content/plugins/fluentform/app/Models/EntryDetails.php
<?php namespace FluentForm\App\Models; class EntryDetails extends Model { /** * The table associated with the model. * * @var string */ protected $table = 'fluentform_entry_details'; /** * 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'); } /** * A submission detail is owned by a submission. * * @return \FluentForm\Framework\Database\Orm\Relations\BelongsTo */ public function submission() { return $this->belongsTo(Submission::class, 'submission_id', 'id' ); } }