We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95ede0b commit 6523b59Copy full SHA for 6523b59
buttons/export.md
@@ -134,7 +134,8 @@ class UsersDataTable extends DataTable
134
135
And also add this code to your routes.php file.
136
```php
137
- $router->post('sample/export', SampleController::class . '@index');
+ Route::resource('sample', 'SampleController@index');
138
+ Route::post('sample/export', 'SampleController@index');
139
...
140
```
141
0 commit comments