Skip to content

Commit 9c43499

Browse files
authored
Merge pull request yajra#19 from carusogabriel/clean-up
Remove extra lines
2 parents a0dac50 + d880ad0 commit 9c43499

File tree

9 files changed

+0
-12
lines changed

9 files changed

+0
-12
lines changed

buttons-starter.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ php artisan datatables:make Users
1010

1111
Update `UsersDataTable` class and set the columns and parameters needed to render our dataTable.
1212

13-
1413
```php
1514
namespace App\DataTables;
1615

@@ -55,7 +54,6 @@ Route::get('users', function getUsers(UsersDataTable $dataTable)
5554
});
5655
```
5756

58-
5957
## Example View:
6058

6159
Our `users.index` view located at `resources/views/users/index.blade.php`.

contributing.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Contributions are **welcome** and will be fully **credited**.
44

55
We accept contributions via Pull Requests on [Github](https://github.com/yajra/{{package}}).
66

7-
87
## Pull Requests
98

109
- **[PSR-2 Coding Standard](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)** - The easiest way to apply the conventions is to install [PHP Code Sniffer](http://pear.php.net/package/PHP_CodeSniffer).
@@ -15,5 +14,4 @@ We accept contributions via Pull Requests on [Github](https://github.com/yajra/{
1514

1615
- **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please squash them before submitting.
1716

18-
1917
**Happy coding**!

general-settings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,4 +125,3 @@ These are the options passed to `laravel-snappy` when exporting the pdf file.
125125
],
126126
```
127127

128-

html-builder-ajax.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,3 @@ Type option represents the type of request (`GET/POST`) that we will use when s
4343
### Data Option
4444
Data option is a `js` string that you can use to append custom data when sending the request to the server.
4545

46-
47-

html-builder-parameters.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Parameters are basically the options you pass when declaring your `DataTable` js
44

55
See the [`datatables.net`](https://datatables.net) official documentation for the list of all possible [`options`](https://datatables.net/reference/option/).
66

7-
87
## Example
98
```php
109
$builder->parameters([

introduction.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,3 @@ Official documentation of DataTables is available at [datatables.net](https://da
3131

3232
Laravel DataTables is a package that handles the [server-side](https://www.datatables.net/manual/server-side) works of [DataTables](http://datatables.net) using [Laravel](http://laravel.com).
3333

34-

manual-order.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
You may optionally disable the default ordering function of Datatables and write you own using `order` api.
44

5-
65
```php
76
use Datatables;
87

order-columns.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ In some cases, you may want to use a custom order sql for a set of columns. To a
66
- `orderColumns` has a special variable `$1` which will be replaced with the order direction of the column.
77
- `orderColumns` has a special placecholder `:column` which will be replaced with the column name set in the first parameter.
88

9-
109
### Example
1110
In this example, we will order the column name with nulls as last result.
1211

row-options.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Setting row class via `blade` string.
4545
->setRowClass('{{ $id % 2 == 0 ? "alert-success" : "alert-warning" }}')
4646
```
4747

48-
4948
<a name="row-data"></a>
5049
## Row Data
5150

0 commit comments

Comments
 (0)