Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timopruesse committed Jun 19, 2017
1 parent 83480d9 commit 311625f
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,10 @@ All Notable changes to `data-tables` will be documented in this file.

Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## 1.0.0
## 1.0.0 (NEXT)

### Added
- LinkColumn formatter
``` php
/**
* Every attribute of the model can be used to generate a link.
* For example generating a link to the users profile on the "name" column.
* Values in curly braces, e.g. "{id}" will be replaced by the model's value.
*/
$dataTable->formatColumn('name', new LinkColumn('/users/{id}')); // e.g. /users/1337
```
- Nothing

### Deprecated
- Nothing
Expand All @@ -29,6 +21,19 @@ $dataTable->formatColumn('name', new LinkColumn('/users/{id}')); // e.g. /users/
### Security
- Nothing

## 0.9.1

### Added
- LinkColumn formatter
``` php
/**
* Every attribute of the model can be used to generate a link.
* For example generating a link to the users profile on the "name" column.
* Values in curly braces, e.g. "{id}" will be replaced by the model's value.
*/
$dataTable->formatColumn('name', new LinkColumn('/users/{id}')); // e.g. /users/1337
```

## 0.9.0

### Added
Expand Down

0 comments on commit 311625f

Please sign in to comment.