Is it possible to save pictures in your package when reading an Excel file? And also when exporting Excel file using a blade form. Ty =)
You should use version 3.1 of Laravel Excel. Older versions are no longer supported.
Are you sure you're using 2.1?
@GlennM Yes. I use 2.1 but I could not find in the documentation can this version work with pictures in Excel.
This version suits me because it supports styles for Excel in the blade. From what I understand, 3.1 it is not able.
I need to parse like this example. Save pictures to my server. Edit this data and then use the blade form to create a new Excel document in the same format with my pictures.

Some basic style is supported. Please refer to https://docs.laravel-excel.com/3.1/exports/extending.html#customize
Styling via CSS is no longer supported. See https://github.com/Maatwebsite/Laravel-Excel/issues/1580#issuecomment-375699913
@GlennM
$event->sheet->styleCells(
'B2:G8',
I don't know in advance which columns and rows I need to format. I have a dynamically generated table.
Is it possible to do this in the blade?
And I'm more interested in importing and exporting images.
3.2 will have support for blade styling again. We are waiting on the new phpspreadsheet release.
Okey, ty ✌
What about importing and exporting images?
Images in blade views is also added to the new phpspreadsheet code.
Okey, ty v
What about importing and exporting images?
did you find any method? I am searching but can't find any proper method to import images from excel to the collection.

I need to import this excel file with company image.
Any solution to import with image?
Most helpful comment
3.2 will have support for blade styling again. We are waiting on the new phpspreadsheet release.