Raphaël Huchet
Raphaël Huchet
I guess it could be merged!
Unfortunately, this is currently not possible. (internal note) Since Spout has been updated in this package to v3 today 🎉, we should now be able to improve this lib to...
Hi, thank you for your contribution. Callbacks are not implemented with generators. I think there can be avoided by directly building the right format in the generator itself. @ehsanhoushmand code...
Yes. You can do something like this ```php (new FastExcel(User::all()))->export('users.csv', function ($user) { return [ 'my column name' => $user->myBooleanVariable ? 'YES' : 'NO', // Then the rest of your...
Unfortunately, it could be considered normal. TBH, this lib could be super optimized to export millions of rows (https://dev.to/rap2hpoutre/export-10m-rows-in-xlsx-with-laravel-without-memory-issues-6bk), but importing has many rooms for improvements! Currently, each row is...
Hi @000kelvin thank you for your feedback! > I came across a solution that suggested storage but I don't want to do that It may be the best solution though....
Hi @inquisitive-stha thank you for your feedback, and sorry for late answer! It has been fixed in version 2.0. Could you try to update to the latest version?
Hi, thank you for your contribution! The `exportOrDownload` function can download or **export**. It means the file can be saved and in this case, the program should not stop. Still,...
Related: https://github.com/rap2hpoutre/fast-excel/issues/162
I [just updated fast-excel](https://github.com/rap2hpoutre/fast-excel/releases) to be compatible with latest version versions of PHP, Laravel, Spout and PHPUnit. The error as been fixed. Could you try to install the v3.0.0: `composer...