'boolean', 'sort_order' => 'integer', ]; protected $hidden = [ 'deleted_at', ]; public function category() { return $this->belongsTo(InterviewCategory::class, 'interview_category_id'); } public function questions() { return $this->hasMany(InterviewQuestion::class, 'interview_template_id'); } }