WIP: List at most 25 hosts

Subject to remove once we have a paginator.
This commit is contained in:
Eric Lippmann 2019-09-09 14:47:42 +02:00
parent 24c60995d9
commit 53a871695b

View file

@ -15,6 +15,7 @@ class HostsController extends Controller
$db = $this->getDb();
$hosts = Host::on($db)->with('state');
$hosts->limit(25);
$hostList = new HostList($hosts);