If i'm copy the url of the home page and paste it into another browser it should go to the login pag...
These are my models User public function posts() { return $this->hasMany('Post'); } P...
these are my relations.. User model public function posts() { return $this->hasMany('Post'...
I've four tables.User,Post,Reply and Confirm tables. And the relation is User has many posts posts...
I've users,posts,comments table. Here are my models user model public function posts() { return $...
thanks for the replies.. Yes... I used post_id field in the posts table and a comment_id field in th...
The Laravel portal for problem solving, knowledge sharing and community building.