Skip to content

Commit 1677c04

Browse files
committed
Patch typo of Datatables to DataTables.
1 parent 37c1372 commit 1677c04

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ over other users requests/tickets.
2828
- Operating System
2929
- PHP Version
3030
- Laravel Version
31-
- Laravel-Datatables Version
31+
- Laravel-DataTables Version

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Laravel Datatables Buttons Plugin
1+
# Laravel DataTables Buttons Plugin
22

33
## Change Log
44

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Total Downloads](https://img.shields.io/packagist/dt/yajra/laravel-datatables-buttons.svg)](https://packagist.org/packages/yajra/laravel-datatables-buttons)
88
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://packagist.org/packages/yajra/laravel-datatables-buttons)
99

10-
This package is a plugin of [Laravel Datatables](https://github.com/yajra/laravel-datatables) for handling server-side function of exporting the table as csv, excel, pdf and printing.
10+
This package is a plugin of [Laravel DataTables](https://github.com/yajra/laravel-datatables) for handling server-side function of exporting the table as csv, excel, pdf and printing.
1111

1212
## Requirements
1313
- [PHP >=7.0](http://php.net/)
@@ -16,7 +16,7 @@ This package is a plugin of [Laravel Datatables](https://github.com/yajra/larave
1616
- [jQuery DataTables Button Extension](https://datatables.net/reference/button/)
1717

1818
## Documentations
19-
- [Laravel Datatables Documentation](http://yajrabox.com/docs/laravel-datatables)
19+
- [Laravel DataTables Documentation](http://yajrabox.com/docs/laravel-datatables)
2020

2121
## NOTE
2222
This version is still on experimental stage. Until Laravel DataTables v8.x stable version is released,
@@ -26,7 +26,7 @@ there might be a breaking changes that may be included on future releases.
2626
`composer require yajra/laravel-datatables-buttons:^2.0`
2727

2828
#### Service Provider (Optional on Laravel 5.5)
29-
`Yajra\Datatables\ButtonsServiceProvider::class`
29+
`Yajra\DataTables\ButtonsServiceProvider::class`
3030

3131
#### Configuration and Assets (Optional)
3232
`$ php artisan vendor:publish --tag=datatables-buttons --force`
@@ -51,4 +51,4 @@ If you discover any security related issues, please email [aqangeles@gmail.com](
5151
The MIT License (MIT). Please see [License File](https://github.com/yajra/laravel-datatables-buttons/blob/master/LICENSE.md) for more information.
5252

5353
## Buy me a beer
54-
<a href='https://pledgie.com/campaigns/29515'><img alt='Click here to lend your support to: Laravel Datatables and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/29515.png?skin_name=chrome' border='0' ></a>
54+
<a href='https://pledgie.com/campaigns/29515'><img alt='Click here to lend your support to: Laravel DataTables and make a donation at pledgie.com !' src='https://pledgie.com/campaigns/29515.png?skin_name=chrome' border='0' ></a>

src/Services/DataTable.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
abstract class DataTable implements DataTableButtons
1414
{
1515
/**
16-
* Datatables print preview view.
16+
* DataTables print preview view.
1717
*
1818
* @var string
1919
*/
@@ -122,7 +122,7 @@ public function render($view, $data = [], $mergeData = [])
122122
}
123123

124124
/**
125-
* Get Datatables Request instance.
125+
* Get DataTables Request instance.
126126
*
127127
* @return \Yajra\DataTables\Utilities\Request
128128
*/
@@ -215,7 +215,7 @@ public function html()
215215
}
216216

217217
/**
218-
* Get Datatables Html Builder instance.
218+
* Get DataTables Html Builder instance.
219219
*
220220
* @return \Yajra\DataTables\Html\Builder
221221
*/

0 commit comments

Comments
 (0)