Browse Source

first iteration of search functionality - likely to fail hard

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

1
app/Http/Controllers/SearchController.php

@ -78,6 +78,7 @@ class SearchController extends Controller
break;
default:
$msg = "You fucked up somehow!";
}
$results = $results::sortable()->paginate(10);
return('search.results')->with($results);
}

Loading…
Cancel
Save