I'm new to laravel and I would like to add another Update method from the created resource controller UsersController. something like this:
public function update(Request $request, $id)
{
"logic here"
}
public function update2(Request $request, $id)
{
"logic here"
}
but i do not know how to access "update2". is there a way to do this?