Ryan Mitchell
Ryan Mitchell
Interesting one - at a guess I'd say its because its inserting the translation before the origin. Would there be any chance of giving me access to the data so...
Great - that’s good to know. I’ll refactor the import to run those without an origin first.
@enespolat24 I have the tests working... can you add me to your fork so I can push to it?
@okaufmann i added a test here - seems to work ok for me: https://github.com/statamic/eloquent-driver/blob/cc3780c3a9654346206cb1de4ba96a9c181ca234/tests/Forms/FormSubmissionTest.php#L56
@okaufmann that will fail due to the unique constraint in the database schema. Two submissions should never have the same microsecond time...
Taxonomy wheres are applied during get() and paginate(), they dont need to be added to where and whereIn. I've run a quick test and I'm not able to replicate this...
Yeah I can see this, though Im not convinced its a specific to eloquent bug as the taxonomy limitation is not being applied at the field level (that I can...
Would a better fix not be to change the `!Str::startsWith('data->'` to be `Str::contains('data->` ?
You are misunderstanding... you could do the same effect of what your changes have done by simpyl checking if `Str::contains('data->` instead of the additional functions and logic you have put...
Yep - basically... one small change (maybe a copy/paste issue on your side). ``` protected function column($column) { if (! is_string($column)) { return $column; } if ($column == 'origin') {...