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
1. Update the composer.json file and change the version of the package to `^11.0`:
6
+
7
+
```json
8
+
"require": {
9
+
"yajra/laravel-datatables-buttons": "^11.0"
10
+
}
11
+
```
12
+
13
+
2. Run `composer update` to update the package.
14
+
15
+
3. If you are using a custom class of laravel-excel to export the data, you need to update the collection method and include the return type `Collection|LazyCollection` in the method signature.
16
+
17
+
```php
18
+
public function collection(): Collection|LazyCollection
0 commit comments