<?php namespace App; use Illuminate\Database\Eloquent\Model; class AppValidationSection extends Model { protected $fillable = ['id', 'name', 'description', 'active', 'parent_section_id', 'options']; public function parent_section() { return $this->belongsTo(AppValidationSection::class)->select('id', 'name'); } }