Benyi

Results 2 issues of Benyi

At [RouteBuilder.php:154]( https://github.com/ingeniasoftware/luthier-ci/blob/master/src/RouteBuilder.php#L154) ```php if(isset($attributes['middleware'])) { if(is_string($attributes['middleware'])) { $attributes['middleware'] = [ $attributes['middleware'] ]; } else { if(!is_array($attributes['middleware'])) { show_error('Route group middleware must be an array o a string'); } }...

Hi there, I'm making a site that uses ngMask. I want number mask that is not just from zero. For example, `/[a-zA-Z](1|2)/` have to use `@2` as mask. But that...