mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-28 17:02:04 +03:00
Search IP by partial-equal
This commit is contained in:
@ -46,7 +46,7 @@ class AuditLogController extends Controller
|
|||||||
$query->where('created_at', '<=', $listDetails['date_to']);
|
$query->where('created_at', '<=', $listDetails['date_to']);
|
||||||
}
|
}
|
||||||
if ($listDetails['ip']) {
|
if ($listDetails['ip']) {
|
||||||
$query->where('ip', '=', $listDetails['ip']);
|
$query->where('ip', 'like', $listDetails['ip'] . "%");
|
||||||
}
|
}
|
||||||
|
|
||||||
$activities = $query->paginate(100);
|
$activities = $query->paginate(100);
|
||||||
|
Reference in New Issue
Block a user