Replies: 2 comments
-
Old thread, but i'm still running into this issue aswell. |
Beta Was this translation helpful? Give feedback.
0 replies
-
any solution to this? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Following the discussion on this thread, my charts don't work on multiple sheets when queued.
I am using v3.1 and the problem still occurs under queue but works okay under download method.
I am using laravel 8.83 & php version 7.4.
My QUEUE_CONNECTION=database.
Here is my code:
//Parent class
class MultipleUsersExport implements WithMultipleSheets {
use Exportable;
}
//Child class
class ActiveUsersExport implements
FromQuery, ShouldAutoSize, WithMapping, WithHeadings, WithEvents, WithCharts, WithTitle {
use Exportable;
}
// code on controller
public function export() {
}
How can I fix this when working with queues ?
Beta Was this translation helpful? Give feedback.
All reactions