This works in blade, but how can I do this in twig? Twig throws the following error: "An opened parenthesis is not properly closed. Unexpected token "punctuation" of value ":" ("punctuation" expected with value ")")"
<li {{ (Request::is('admin/users') ? 'class=active' : '') }}>
<a href="{{ route('users') }}">
Users
</a>
</li>
twig- DarkBee