50 Replies
Probably because the name field is empty?
No it is not empty
why are you setting all the fields in resolveRecord()? thats not the point
Ok but I am not getting the error because of that
sure but you're not using the importer properly, so I don't know what else you're doing wrong that might be causing the problem
so please read the docs, fix the implementation and then come back if the error is still there
thanks. these errors i get "The id field must be an integer. The name field is required." in the excel the data is there.
https://gist.github.com/raheelms/fe9ab1c7efc63a78eb716720d3f4f048

Provide the failed importing csv please.
you prob also need to pass
->integer()
to the ID column so it gets cast to a real integerthis is the failed
What's the data you are importing? Because the failed data looks corrupt
this is the exported data
this is the export file
this is the importer file
I can't even open that file in Number/Excel. The leading
"
on every line seems off to mebut what is causing it?
I just said: The
"
looks off to me. How did you create that CSV?i have shared the code here above. the CollectionExporter is the name
this is the collection model
collectionresource
I have provided the file
any help?
What on gods earth is going on here.
You are talking about import validation issues then export, stick to one topic.
Provide the csv that you are tyring to import
He did above
Because apparently he is importing a file that he exported through Filament
I haven't used the export/import feature so I'm out of ideas.
Yeah if that is the import he is trying to import will fail as Dan pointed out it is as
so id is 1,Laptops,laptop
I'd like to see the actual exported file without being editted 100% raw export because looking at the CollectionExporter it is good enough to have a standard export
@toeknee, i have shared the exported file. and i am modifying that file and importing. but apparently i have to divide the data in columns first in excel then i can import it.
and i am modifying that file and importingYou didn't say anything about that. What are you modifying? I thought this is straight from the export
the CSV file definitely doesnt look right
i will share the file that is created after export. in the CollectionExporter u can see the code. this file is not edited.
this is the CollectionExporter
That is a perfect export with a standard
,
comma delimiter
So after the export what are you doing that causes it to mess up.
i am changing the content in the csv and try to import that data. even if i don't change that file and import the file. i get errors like the id is required and name field is required
So how are you modifying this? Because after your modifications the file is invalid
So how you are saving/opening the CSV is the issue
Yes, apparently i have to divide the columns and save it as a csv. then importing works
yes i think this was the case. But what i still am figuring out is this.
image data is being imported as this ["["collections\/01JMYENZR4ZXWJV9DKCV6H95KF.png"]"]
So the problem isn't filament, its how you are manipulating the file. You can change the delimiter if you please,see:
https://filamentphp.com/docs/3.x/actions/prebuilt-actions/export#changing-the-csv-delimiter
That's because that is the image data
image data is being imported as this ["["collections/01JMYENZR4ZXWJV9DKCV6H95KF.png"]"]
why is this happening? i didn't change that
You did? the export is that? ["[\collections\/01JMYENZR4ZXWJV9DKCV6H95KF.png"]""]"
the \ is removed as standard
no i didn't change anything there
I think the export is actually the same as the import
yes almost. i changed only the content and name to see if it imports correct
but didn't change anything in the image field
I guess that comes from
->listAsJson()
?yes but how else should i handle it
this is in the migration file
I'm not sure what's the correct Export. I never used that feature. But your import is exactly what was exported.
is it possible for the team to make tutorials? because sometimes it is not clear how to write the code.
For what though? You are exporting the data correctly... then importing it correctly.
What is it you are expecting
no the import i have to modify
i meant the tutorials in general.
for filament
Laraveldaily does make tutorials.
But it is fairly basic stuff import/export. You have built the exporters and the importers which work.
so if you have to modify the import... you modify it however you want and then import it...
Even if we did we couldn't cover everything