Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit 9523045

Browse files
authored
Update readme.md
1 parent a26ae90 commit 9523045

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

readme.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,18 @@ class UserController extends Controller
138138

139139
return view('users.index', compact('users'));
140140
}
141+
142+
/**
143+
* Displays the specified LDAP user.
144+
*
145+
* @return \Illuminate\View\View
146+
*/
147+
public function show($id)
148+
{
149+
$user = $this->ldap->search()->findByGuid($id);
150+
151+
return view('users.show', compact('user'));
152+
}
141153
}
142154
```
143155

0 commit comments

Comments
 (0)