Advertisement
Guest User

Untitled

a guest
Mar 14th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <table class="table table-hover">
  2. <thead>
  3. <th>#</th>
  4. <th>Company</th>
  5. <th>Name</th>
  6. <th>Email Address</th>
  7. <th>Action</th>
  8. </thead>
  9. <tbody>
  10. @foreach(AppUser::all() as $c)
  11. <tr>
  12. <td>{{ $c->id }}</td>
  13. <td>{{ $c->company->company_name }}</td>
  14. <td>{{ $c->name }}</td>
  15. <td>{{ $c->email }}</td>
  16. <td><a href="/admin/user/{{ $c->id }}/password/reset">Password Reset</a></td>
  17. </tr>
  18. @endforeach
  19. </tbody>
  20. </table>
  21.  
  22. public function passwordReset($id)
  23. {
  24.  
  25. $user = User::FindOrFail($id);
  26.  
  27. Password::sendResetLink($user->email);
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement