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. It worked for me.I added all the necessary routes inside the group filter....
hi, I'm using this query $post = DB::select('select p.post from post AS p,con...
Thanks for the replies these are my tables.. users: id name post:id post user_id reply:id reply...
ya.. its posts have many Reply... I wanted to display all the post that have reply_id present in con...
Hi Belar. These are my tables...... users:id name posts:post_id(pk),post,user_id comments:comment_id...
The Laravel portal for problem solving, knowledge sharing and community building.
The community