Skip to content

Commit 5ba3c27

Browse files
committed
Fix tips.
1 parent df5242f commit 5ba3c27

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Diff for: editor-events.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ In addition to Laravel's model events, DataTables Editor offers some pre & post
77

88
Create action has the following event hooks:
99

10-
- [creating] event hook that is fired before creating a new record.
11-
- [created] event hook that is fired after the record was created.
10+
- `creating` event hook that is fired before creating a new record.
11+
- `created` event hook that is fired after the record was created.
1212

1313
To use the event hook, just add the methods on your editor class.
1414

@@ -27,8 +27,8 @@ public function created(Model $model, array $data) {
2727

2828
Edit action has the following event hooks:
2929

30-
- [updating] event hook that is fired before updating a new record.
31-
- [updated] event hook that is fired after the record was updated.
30+
- `updating` event hook that is fired before updating a new record.
31+
- `updated` event hook that is fired after the record was updated.
3232

3333
To use the event hook, just add the methods on your editor class.
3434

@@ -47,8 +47,8 @@ public function updated(Model $model, array $data) {
4747

4848
Remove action has the following event hooks:
4949

50-
- [deleting] event hook that is fired before deleting a new record.
51-
- [deleted] event hook that is fired after the record was deleted.
50+
- `deleting` event hook that is fired before deleting a new record.
51+
- `deleted` event hook that is fired after the record was deleted.
5252

5353
To use the event hook, just add the methods on your editor class.
5454

Diff for: editor-installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
This package is a plugin of [Laravel DataTables](https://github.com/yajra/laravel-datatables) for processing [DataTables Editor](https://editor.datatables.net/) library.
44

5-
> {info} Special thanks to [@bellwood](https://github.com/bellwood) and [@DataTables](https://github.com/datatables) for being [generous](https://github.com/yajra/laravel-datatables/issues/1548) for providing a license to support the development of this package.
5+
> {tip} Special thanks to [@bellwood](https://github.com/bellwood) and [@DataTables](https://github.com/datatables) for being [generous](https://github.com/yajra/laravel-datatables/issues/1548) for providing a license to support the development of this package.
66
7-
> A [premium license](https://editor.datatables.net/purchase/index) is required to be able to use [DataTables Editor](https://editor.datatables.net/) library.
7+
A [premium license](https://editor.datatables.net/purchase/index) is required to be able to use [DataTables Editor](https://editor.datatables.net/) library.
88

99
<a name="installation"></a>
1010
## Installation

Diff for: editor-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
DataTables Editor requires a `Eloquent Model` that will be used for our CRUD operations.
44

5-
> All CRUD operations of Editor uses database transaction.
5+
> {tip} All CRUD operations of Editor uses database transaction.
66
77
<a name="setup"></a>
88
## Setup Model

0 commit comments

Comments
 (0)