Skip to content

Commit 6b926bb

Browse files
Update Readme File
1 parent e0a8c2d commit 6b926bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you want you can use the [facade](http://laravel.com/docs/facades). Add the r
3535
##### setup in model
3636
To use new trait token you need to do some changes in the model that contain the token column.
3737
##### One Column Token
38-
######One token Trait allow you to generate token for one columns in the table
38+
#####One token Trait allow you to generate token for one columns in the table
3939

4040
* To use one column token you need to add `` use DirapeToken;`` in the model .
4141
* In database we use default column called ``dt_token`` to replace with your column name add `` protected $DT_Column='column_name';`` in the model .
@@ -76,7 +76,7 @@ To use new trait token you need to do some changes in the model that contain the
7676
$user=User::WithToken(false)->get();
7777
```
7878
##### Multi Column Token
79-
######Multi token allow you to generate tokens for multi columns in the same table
79+
#####Multi token allow you to generate tokens for multi columns in the same table
8080

8181
* To use multi column token you need to add `` use DirapeMultiToken;`` in the model .
8282
* Columns settings are not set by default so you need to make your custom settings in the model

0 commit comments

Comments
 (0)