Mattias Fjellvang

Results 174 issues of Mattias Fjellvang

I am trying to figure out why ->errors() is empty, while calling -> validationErrors directly, is not. I am extending the `validate()` method on my User model. This is how...

Say I have a user model like this: ``` class User { public static $rules = [ 'email' => 'sometimes|required|unique:users,email|email', 'firstname' => 'sometimes|required|min:1', 'lastname' => 'sometimes|required|min:1', ]; } ``` The...

How can I forceCreate ardent? I am doing some kind of seeding, and using: ``` $user->create([]); ``` But how can I tell ardent to ignore validation?

In case Google Maps is not installed, it should open Apple Maps

enhancement

I'd like to disable `fsync` - is there a way to do this with this image?

I noticed that `onSwipeValueChange` fires A LOT when a callback is provided. Is it possible to throttle it? On a simple swipe from one end of the screen to the...

When I install the library I receive this error: ``` > npm install -g facebook-export npm WARN deprecated [email protected]: Legacy versions of mkdirp are no longer supported. Please update to...

I've tried to define a custom getter like this: import { Expose } from 'class-transformer'; export class MyDTOResponse { @Expose() id: string; @Expose() name: string; @Expose() get thisIsATest(): string {...

type: question

How do I send enhanced e-commerce tracking with this library? Currently I have tried like so: this.$gtag('event', 'transaction', { ecommerce: { purchase: { actionFields: { id: '123', revenue: '4.56', tax:...

I have setup using basic configuration with `debug: true`. If I fire: this.$gtag('event', 'your_event', { testing: 123 }); Nothing happens. If I run below script first, then it works this.$gtag('config',...