User and Role show method redirect index page..

This commit is contained in:
Cüneyt Şentürk
2021-07-11 12:56:08 +03:00
parent 96fb3b3cc5
commit fc57b3bc34
2 changed files with 20 additions and 0 deletions

View File

@ -40,6 +40,16 @@ class Users extends Controller
return $this->response('auth.users.index', compact('users'));
}
/**
* Show the form for viewing the specified resource.
*
* @return Response
*/
public function show()
{
return redirect()->route('users.index');
}
/**
* Show the form for creating a new resource.
*