File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 115
115
- [ Fractal Transformer] ( /docs/{{package}}/{{version}}/response-fractal )
116
116
- [ Fractal Serializer] ( /docs/{{package}}/{{version}}/response-fractal-serializer )
117
117
118
+ - ## Livewire + Batch Job Exports
119
+ - [ Installation] ( /docs/{{package}}/{{version}}/exports-installation )
120
+
118
121
- ## Editor
119
122
- [ Installation] ( /docs/{{package}}/{{version}}/editor-installation )
120
123
- [ Editor Command] ( /docs/{{package}}/{{version}}/editor-command )
Original file line number Diff line number Diff line change
1
+ # Export Plugin Installation
2
+
3
+ Github: https://github.com/yajra/laravel-datatables-export
4
+
5
+ Run the following command in your project to get the latest version of the plugin:
6
+
7
+ ` composer require yajra/laravel-datatables-export:^0.12 `
8
+
9
+ ## Configuration
10
+
11
+ > This step is optional if you are using Laravel 5.5
12
+
13
+ Open the file ``` config/app.php ``` and then add following service provider.
14
+
15
+ ``` php
16
+ 'providers' => [
17
+ // ...
18
+ Yajra\DataTables\DataTablesServiceProvider::class,
19
+ Yajra\DataTables\ExportServiceProvider::class,
20
+ ],
21
+ ```
22
+
23
+ After completing the step above, use the following command to publish configuration & assets:
24
+
25
+ ```
26
+ php artisan vendor:publish --tag=datatables-export --force
27
+ ```
You can’t perform that action at this time.
0 commit comments