{{route('auth.select_user_type', 'customer')}}
return Redirect::route('login');
return Redirect::to('user/login');
Inline condition
{{ ($cat) ? 'meow' : "zZzzZ" }}
Check if section has content and use it in a conditional
{{ (array_key_exists('header', View::getSections()) ) ? 'has-header' : '' }}