Tomas Maly

Results 19 issues of Tomas Maly

If I create a table seeder for a table that uses metable, the meta columns don't get translated into key/value pairs on the related table. For example: In database/factories/ModelFactory.php: ```...

Instead of: ``` $post = Post::meta() ->where(function($query){ $query->where('posts_meta.key', '=', 'revision') ->where('posts_meta.value', '=', 'draft'); }) ``` It would be really helpful/nice to have something like this: ` $post = Post::whereMeta(['revision'=>'draft']) `

It would be nice if I could pass a parameter to my input fields to add an additional class to the form-group wrappers, such as styling multiple columns (this IS...

Fixing error causing: Could not get unknown property 'android' for project ':app' of type org.gradle.api.Project

Fixing breaking change with react-native-svg 's transform interpolation (object syntax has been removed) As per: https://github.com/react-native-community/react-native-svg/pull/507

I'm hoping to duplicate the exact user experience with facebook's mobile app.... I was wondering if it's possible to display a human name "John Davis" rather than just "@johndavis3", based...

It would be nice to have an option to use BootForm (and FormBuilder) for form generation. I also find that it's common to share the credit/edit forms as there are...

Seems that CSS classes can only be set to a single class, not a string of multiple classes. Seems like a limitation, and I don't see why it can't concatenate...

I'm not getting any results from the callback OTHER than 'completed: false, cancelled: true, error: false", whether I press back during the message composition or I actually send the message....

When sending, recipient list always ends with a comma, which makes the messages app say the wrong # of recipients (+1). There shouldn't be a delimiter at the end of...