As far as I know, the "official" Laravel position is that XSS prevention best practice is to escape output. Thus, {{{ }}}.
You can supplement output escaping through input sanitation with Input::all(), strip_tags(), and array_map():
$input = array_map('strip_tags', \Input::all());