Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 552 Bytes

UPGADE.md

File metadata and controls

22 lines (16 loc) · 552 Bytes

UPGRADE GUIDE

Upgrade from 10.x to 11.x

  1. Update the composer.json file and change the version of the package to ^11.0:
"require": {
    "yajra/laravel-datatables-buttons": "^11.0"
}
  1. Run composer update to update the package.

  2. 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.

public function collection(): Collection|LazyCollection
{
    return $this->collection;
}