/** * Generate an un-ordered list of items. * * @param array $list * @param array $attributes * @return string * @static */ public static function ul($list, $attributes = array()) { return \Illuminate\Html\HtmlBuilder::ul($list, $attributes); }