Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 555 Bytes

buttons-installation.md

File metadata and controls

21 lines (15 loc) · 555 Bytes

Buttons Plugin Installation

Run the following command in your project to get the latest version of the plugin:

composer require yajra/laravel-datatables-buttons:^1.1

Open the file config/app.php and then add following service provider.

'providers' => [
    // ...
    Yajra\Datatables\DatatablesServiceProvider::class,
    Yajra\Datatables\ButtonsServiceProvider::class,
],

After completing the step above, use the following command to publish configuration & assets:

php artisan vendor:publish --tag=datatables-buttons