query() ->select([ 'total_accounts' => Account::selectRaw('COUNT(id)'), 'total_players' => Player::selectRaw('COUNT(id)'), 'total_guilds' => Guild::selectRaw('COUNT(id)'), 'total_monsters' => Monster::selectRaw('COUNT(id)'), 'total_houses' => House::selectRaw('COUNT(id)'), ])->first(); $twig->display('statistics.html.twig', array( 'count' => $count, ));