I am new to Laravel. I Just want to create a self referential model. For example, I want to create a product category in which the field parent_id as same as pr
parent_id
you can refer self, using $this
class Post extends Eloquent { function posts(){ return $this->hasMany($this, 'parent_id'); } }