Peter Klooster

Results 55 comments of Peter Klooster

Did you guys ever solve this issue? Just to recap otherwise; As long as I make sure that all encrypted fields have a value everything is fine?

Hello @volfin! Thanks for having a look at my project! I can agree with you that the example is somewhat scarce, so I might need to make something better for...

Hello @UksusoFF Are you seeing this with all updates, or just when updating a non-versioned attribute? Also, please note that if you have the 'updated_at' on your versioned table that...

Hello @AceWT, This should fix your issue: ```PHP Schema::create('mytable_version', function(Blueprint $table) { $table->integer('ref_id'); $table->integer('version'); //add versionable columns $table->timestamps(); $table->softDeletes(); $table->primary(['ref_id', 'version']); }); ```

Hi there, It does indeed appear that certain relations don't work. Fortunately I did just get **hasMany** relation working locally. I'm going to fix all relations, and put them under...

Closing this issue, I just released a completely rebuild of this project! There are multiple, more complete examples now (as well as extensive docs!)

Closing this issue, I just released a completely rebuild of this project! There are multiple, more complete examples now (as well as extensive docs!)

Closing this issue, I just released a completely rebuild of this project! There are multiple, more complete examples now (as well as extensive docs!)

You can achieve it like this, you should make sure you cd into the project folder as well before creating the meta files. The issue in #7 is the same....

Hi @Anabolkick, Thanks for having a go at this project! Right now changing the calculation in the resolver isn't possible. I don't think it would be easy to change this,...