|
|
|
@ -34,9 +34,8 @@ class FrontIndexController extends Controller
|
|
|
|
|
$rawSearch = $terms;
|
|
|
|
|
$terms = str_replace(",", "", $terms);
|
|
|
|
|
$terms = str_replace(" ", "|", $terms);
|
|
|
|
|
$raw = DB::select("SELECT * FROM searchlocations('$terms')");
|
|
|
|
|
$raw = DB::select("SELECT * FROM searchlocations(?)", [$terms]);
|
|
|
|
|
$results = [];
|
|
|
|
|
|
|
|
|
|
foreach ($raw as $item) {
|
|
|
|
|
if ($item->block_count > 2) {
|
|
|
|
|
array_push($results, $item);
|
|
|
|
|