Fix links on admin dashboard

This commit is contained in:
Nabeel Shahzad
2018-01-04 08:14:39 -06:00
parent be8ac25cc0
commit 0bb4ca78f5
3 changed files with 14 additions and 26 deletions

View File

@@ -59,6 +59,10 @@ class UserRepository extends BaseRepository
$where['email'] = $request->email;
}
if ($request->filled('state')) {
$where['state'] = $request->state;
}
$this->pushCriteria(new WhereCriteria($request, $where));
return $this;
}