Thanks to Reddit user reddit.com/user/Re-Infected/, here's an simpler update() method:
update()
public function update(User $user, User $user_model) { return $user->is($user_model) ?: Response::deny(); }
In plain English: If the logged in user is equal to the user passed then return true (= pass this request), if not deny the update process.
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
Where hackers, sticks, weekend warriors, pros, architects and wannabes come together
Thanks to Reddit user reddit.com/user/Re-Infected/, here's an simpler
update()method:In plain English: If the logged in user is equal to the user passed then return true (= pass this request), if not deny the update process.