lbar
lbar
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
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)
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
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?
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
and this error happens also if I print the raw query, and it's correct...
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
No description
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
and also doing something like:
public static function modifyQuery(Builder $query): Builder
{
$query->join('registration_member', 'registrations.id', '=', 'registration_member.registration_id')
->select(
'registrations.id',
'registrations.competition_name',
'registrations.transaction_id',
'registration_member.member_certificate_id',
'registration_member.member_card_id',
'registration_member.member_idcard_id',
);

return $query;
}
public static function modifyQuery(Builder $query): Builder
{
$query->join('registration_member', 'registrations.id', '=', 'registration_member.registration_id')
->select(
'registrations.id',
'registrations.competition_name',
'registrations.transaction_id',
'registration_member.member_certificate_id',
'registration_member.member_card_id',
'registration_member.member_idcard_id',
);

return $query;
}
still the exported does not get the rows correctly
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
No description
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
probably i'm nearer. With this exporter query:
public static function modifyQuery(Builder $query): Builder
{
$query->with(['registrationMembers']);
return $query;
}
public static function modifyQuery(Builder $query): Builder
{
$query->with(['registrationMembers']);
return $query;
}
i get the result required but condensed on the same row, like:
id,competition_name,transaction_id,firstname,lastname
5186,,reg_67d984fc555f8,"Nome11, Nome22, john","Cognome11, Cognome22, doe"
5185,,reg_67cad42db759b,John4,Doe4
5184,,reg_67c9bdcd9b7cf,Nome3,Cognome3
id,competition_name,transaction_id,firstname,lastname
5186,,reg_67d984fc555f8,"Nome11, Nome22, john","Cognome11, Cognome22, doe"
5185,,reg_67cad42db759b,John4,Doe4
5184,,reg_67c9bdcd9b7cf,Nome3,Cognome3
when what i like to have is:
id,competition_name,transaction_id,firstname,lastname
5186,,reg_67d984fc555f8,"Nome11","Cognome11"
5186,,reg_67d984fc555f8,"Nome22","Cognome22"
5186,,reg_67d984fc555f8,"john","doe"
5185,,reg_67cad42db759b,John4,Doe4
5184,,reg_67c9bdcd9b7cf,Nome3,Cognome3
id,competition_name,transaction_id,firstname,lastname
5186,,reg_67d984fc555f8,"Nome11","Cognome11"
5186,,reg_67d984fc555f8,"Nome22","Cognome22"
5186,,reg_67d984fc555f8,"john","doe"
5185,,reg_67cad42db759b,John4,Doe4
5184,,reg_67c9bdcd9b7cf,Nome3,Cognome3
any clue or hint? thank you
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
nope. Still problem here. Basically i'm trying something very simple like:
ExportAction::make()
->exporter(RegistrationExporter::class)
->modifyQueryUsing(function (Builder $query, array $options) {
$query->join('registration_member as rm', 'rm.registration_id', '=', 'registrations.id')
->select(
'registrations.id as registration_id',
'registrations.transaction_id as transaction_id',
'rm.id as member_id'
);
return $query;
})
ExportAction::make()
->exporter(RegistrationExporter::class)
->modifyQueryUsing(function (Builder $query, array $options) {
$query->join('registration_member as rm', 'rm.registration_id', '=', 'registrations.id')
->select(
'registrations.id as registration_id',
'registrations.transaction_id as transaction_id',
'rm.id as member_id'
);
return $query;
})
and in the exporter i have:
class RegistrationExporter extends Exporter
{
protected static ?string $model = Registration::class;
...
public static function getColumns(): array
{
return [
ExportColumn::make('registration_id'),
ExportColumn::make('transaction_id'),
ExportColumn::make('member_id')
];
...
class RegistrationExporter extends Exporter
{
protected static ?string $model = Registration::class;
...
public static function getColumns(): array
{
return [
ExportColumn::make('registration_id'),
ExportColumn::make('transaction_id'),
ExportColumn::make('member_id')
];
...
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:
Export completed
Your registration export has completed and 0 rows exported. 5 rows failed to export. <== 5 is the correct number of row, but 0 exported.
Export completed
Your registration export has completed and 0 rows exported. 5 rows failed to export. <== 5 is the correct number of row, but 0 exported.
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
16 replies
FFilament
Created by lbar on 2/24/2025 in #❓┊help
Exporter duplicate rows for relations
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...
16 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
ok i'll try in my way, thank you very muck for your extensive support on this. much appreciate
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
uh, this worked :squint:
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
yes also trying to comment everything, aside Documents didn't works
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
yep, the dd($arguments) works, but I need to comment the fillForm followed (but this is fine, i found this also in the doc). The static options doesn't work too. But this morning i have tried to comment everything from my stepper form, and create an example with the simple form like your own example, and it worked. It's for that, that my guess are that this $form->getComponent($form->getStatePath() . '.member_certificates') can't grab the correct input on the Documents step
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
livewire component, called like: {{ ($this->subscribeMemberAction)(['member_id' => $member->id]) }}
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
for now workarounded saving the member_id on the session, but not quite sure that is the best approach. imho the step/wizard form require a different mountUsing, but didn't find something on the docs
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
probably found. The form that i'm using is a step (wizard), so my guess is that $form->getStatePath().'.member_certificates' isn't getting correctly my field
20 replies
FFilament
Created by lbar on 1/3/2025 in #❓┊help
modal form passing value from the action
removed my previous answer because obviously wrong, by the way at that time, also with your example i'm not able to populate my radio on modal start...still trying...
20 replies
FFilament
Created by lbar on 12/12/2024 in #❓┊help
breadcrumb never disappear completely
yeah. this did the trick. thank you
5 replies
FFilament
Created by lbar on 11/11/2024 in #❓┊help
DatePicker problem accessing the field from the relationship
solved with this casting on the model: 'birth_date' => 'date:Y-m-d' no idea why i needed to explicit the casting format, otherwise from the relations the picker can't grab the correct one.
4 replies