App\Http\Controllers\UsersController::show PHP Méthode

show() public méthode

Display the specified resource.
public show ( integer $id ) : Response
$id integer
Résultat Response
    public function show($id)
    {
        return view('users.show')->withUser($this->users->find($id))->withCompanyname($this->settings->getCompanyName());
    }