You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you searched through other issues to see if your problem is already reported or has been fixed?
Yes, I did not find it.
Did you read the documentation?
Yes, I did not find it.
Have you tried to publish the views?
Yes - I didn't work.
Is there an error in the console?
Yes
PHP Version
8.2
PowerGrid
5.10.7
Laravel
11.34.2
Livewire
3.5.12
Alpine JS
3.0.1
Theme
Tailwind 3.x
Describe the bug.
I have 40K Plus records inside my table and i want to export All the records. I did setup the export method like this but it's still giving me Above attached error.
public function setUp(): array
{
$this->showCheckBox();
$this->persist(['columns'], prefix: auth()->id ?? '');
return [
Exportable::make('products')
->striped()
->type(Exportable::TYPE_CSV)
->queues(10),
Header::make()
->showSearchInput(),
Footer::make()
->showPerPage(50)
->showRecordCount(),
];
}
```
### To Reproduce...
First click on "FOO" then....
### Extra information
```markdown
<?php
//...
This discussion was converted from issue #1794 on December 06, 2024 10:34.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Have you searched through other issues to see if your problem is already reported or has been fixed?
Yes, I did not find it.
Did you read the documentation?
Yes, I did not find it.
Have you tried to publish the views?
Yes - I didn't work.
Is there an error in the console?
Yes
PHP Version
8.2
PowerGrid
5.10.7
Laravel
11.34.2
Livewire
3.5.12
Alpine JS
3.0.1
Theme
Tailwind 3.x
Describe the bug.
I have 40K Plus records inside my table and i want to export All the records. I did setup the export method like this but it's still giving me Above attached error.
Beta Was this translation helpful? Give feedback.
All reactions