lbar
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
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
Exporter duplicate rows for relations
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
16 replies
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 step20 replies