In my edit form, I want to add a button to save and edit the following user.
I am trying that the "next" button takes me to the next record in alphabetical order.
I have only managed to order by ID
// In a model
public function next(){
return User::where('id', '>', $this->id)->orderBy('nombre','asc')->first();
}
public function previous(){
return User::where('id', '<', $this->id)->orderBy('nombre','desc')->first();
}