Files
faveo/app/Model/helpdesk/Form/FieldValue.php
2016-12-13 13:14:54 +00:00

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;
}
}