Files
faveo/app/Model/helpdesk/Form/FieldValue.php
Manish Verma 76e85db070 update 1.0.8.0
Commits for version update
2016-10-17 12:02:27 +05:30

23 lines
464 B
PHP

<?php
namespace App\Model\helpdesk\Form;
use Illuminate\Database\Eloquent\Model;
class FieldValue extends Model
{
protected $table = 'field_values';
protected $fillable = ['field_id', 'child_id', 'field_key', 'field_value'];
public function childId()
{
$childid = '';
$child = $this->attributes['child_id'];
if ($child) {
$childid = $this->attributes['child_id'];
}
return $childid;
}
}