How do i get the id of the user from seo friendly url?
Here's the url (1 is the id)
http://www.website.com/users/edit/1
And, if the url is http://www.website.com/users/edit/1/stack-overflow/ in this case how do i find the id?
I am trying to get it as <?php user = User::find($_GET['id']); ?> but id doesn't work.