Skip to content

Commit d7f1ac3

Browse files
update docs folder
1 parent 66e5386 commit d7f1ac3

File tree

3 files changed

+26
-22
lines changed

3 files changed

+26
-22
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ These two Laravel packages are for making easy and quickly dataTable for your wo
1010

1111
## Table of contents
1212

13-
1. [Introduction](1-introduction.md)
14-
* [Quick Example](#Quick Example)
15-
2. [Installation and Setup](2-Installation-and-Setup.md)
16-
3. [Configuration](3-Configuration.md)
17-
4. [Usage](4-Usage.md)
13+
1. [Introduction](README.md)
14+
* [Quick Example](#Quick-Example)
15+
2. [Installation and Setup](https://github.com/yazan-alnugnugh/laravel-datatable/blob/master/_docs/2-Installation-and-Setup.md)
16+
3. [Configuration](https://github.com/yazan-alnugnugh/laravel-datatable/blob/master/_docs/3-Configuration.md)
17+
4. [Usage](https://github.com/yazan-alnugnugh/laravel-datatable/blob/master/_docs/4-Usage.md)
1818

1919

2020

_docs/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Introduction
22

33
<p align="center">
4-
<img src="art/intro-image.png" alt="laravel-vue-datatable intro image">
4+
<img src="../art/intro-image.png" alt="laravel-vue-datatable intro image">
55
</p>
66

77
**if you want to make dataTable easy and quickly with crazy features, this package is for you.**

_docs/4-Usage.md

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@
44
2. [Installation and Setup](2-Installation-and-Setup.md)
55
3. [Configuration](3-Configuration.md)
66
4. [Usage](4-Usage.md)
7-
* [Basic Usage](#Basic Usage)
8-
* [relation include](#relation include)
7+
* [Basic Usage](#Basic-Usage)
8+
* [relation include](#relation-include)
99
* [Searching](#Searching)
1010
* [Sorting](#Sorting)
11-
* [Selection filter](#Selection filter for relations)
12-
* [Data mapping](#Data mapping)
13-
* [Action buttons](#Action buttons)
11+
* [Selection filter](#Selection-filter-for-relations)
12+
* [Data mapping](#Data-mapping)
13+
* [Action buttons](#Action-buttons)
1414
* [Delete](#Delete)
15-
* [Delete All](#Delete All)
15+
* [Delete All](#Delete-All)
1616

1717

1818
## Usage
1919

20-
##Basic Usage
20+
## Basic Usage
21+
2122
### **server side**
2223

2324
##### **step 1**
@@ -143,7 +144,8 @@ use the data-table component in your blade
143144

144145
```
145146

146-
##relation include
147+
## relation include
148+
147149
### **server side**
148150

149151
##### **step 1**
@@ -195,7 +197,7 @@ add relation column to columns prop
195197
```
196198

197199

198-
##Searching
200+
## Searching
199201

200202
### **server side**
201203

@@ -208,7 +210,8 @@ add ``` $searchColumns``` property to start use search feature
208210

209211
public $searchColumns = ['id'];
210212
````
211-
##Sorting
213+
214+
## Sorting
212215

213216
### **client side**
214217

@@ -256,7 +259,7 @@ there is 3 property inside sort
256259

257260
```
258261

259-
##Per page
262+
## Per page
260263

261264

262265
### **client side**
@@ -294,7 +297,7 @@ to use rows count per page we need to use ````perPage```` object
294297
295298
```
296299
297-
##Selection filter for relations
300+
## Selection filter for relations
298301
299302
300303
### **client side**
@@ -346,7 +349,7 @@ to add select input for relation column you will add filter object as below
346349
</x-app-layout>
347350
```
348351

349-
##Data mapping
352+
## Data mapping
350353
### **server side**
351354

352355
if you would to restructure data we provide this method for you
@@ -376,7 +379,7 @@ after that, we will add this method
376379
}
377380
```
378381

379-
##Action buttons
382+
## Action buttons
380383

381384
### **server side**
382385

@@ -403,7 +406,8 @@ we can add associative array to action array with two value button structure and
403406

404407
}
405408
```
406-
##Delete
409+
410+
## Delete
407411

408412
### **server side**
409413

@@ -433,7 +437,7 @@ to use delete action just we can insert our delete button and add
433437

434438

435439

436-
##Delete All
440+
## Delete All
437441

438442
### **client side**
439443

0 commit comments

Comments
 (0)