Exporter duplicate rows for relations
Hi, i'm working with the exporter. I need to to duplicate the record of the table exported, one for every relation of the record (it's a registration->members relation so 1 registration with N members, with a pivot table).
It's there a way to duplicate the exported record in that way?
Example (pseudo code):
can't find anything online, and LLM goes crazy very bad with that one... 😕
ty
Solution:Jump to solution
```php
public static function modifyQuery(Builder $query): Builder
{
$query->join('registration_member', 'registrations.id', '=', 'registration_member.registration_id')
->join('members', 'registration_member.member_id', '=', 'members.id')...
9 Replies
ok maybe solved with a raw query with join. But to me looks pretty strange that is not possible (or at least i haven't found a way) to do it in a clean eloquent way...
nope. Still problem here. Basically i'm trying something very simple like:
and in the exporter i have:
Printing the rawquery above is working correctly and the number of rows exported is fine. But for some reason that I can't get, the exporter does not export anything:
There is some additional stuff to do in order to make the exporter able to retrieve the joined fields?
Or there is better way to join fields on the query (eg using the eloquent relations. for example...)
ty
probably i'm nearer.
With this exporter query:
i get the result required but condensed on the same row, like:
when what i like to have is:
any clue or hint?
thank you
try
thanks but already tried this.
registration_member is a pivot table, like:

and also doing something like:
still the exported does not get the rows correctly

and this error happens also if I print the raw query, and it's correct...
Solution
yes the query is still correct (also that one) but for some reason I still get 0 rows exported from the exported.
It's possible that is due that exporter has:
class RegistrationExporter extends Exporter
{
protected static ?string $model = Registration::class;
and he can't read others fields from joined table?
no ok now fixed, a syntax error on the last one that i have found now.
But this is the only way to do that? There is no way to use the eloquent relations?
Because on them I have already all the required relationship
(thank you for the support man)
Welcome dude