public function index()
 {
     $passwordResets = PasswordReset::orderBy('updated_at', 'desc')->get();
     return response(['data' => $passwordResets, 'status' => 'success', 'message' => '']);
 }
 public function index()
 {
     $passwordResets = PasswordReset::orderBy('updated_at', 'desc')->get();
     return View::make('Middle.Web.PasswordReset.index', compact('passwordResets'));
 }