Browse Source

first iteration of search functionality - likely to fail hard

master
jk 3 years ago
parent
commit
a24c6d78ee
  1. 2
      app/Http/Controllers/SearchController.php

2
app/Http/Controllers/SearchController.php

@ -51,7 +51,7 @@ class SearchController extends Controller
if ($i == 0) {
$result['grains'] = $grainarr;
} else {
array_push($result['grains'],$grainarr);
$result['grains'] = array_push($result['grains'],$grainarr);
}
$i++;
};

Loading…
Cancel
Save