Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
relliv committed Apr 9, 2023
1 parent 8c05eb4 commit e217f9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This trait allows you to get all children of the model.
```php

use LaravelReady\ModelSupport\Traits\Sluggable;
use LaravelReady\ModelSupport\Traits\ParentChild;
...

$model->parent(); // will return parent model
Expand All @@ -70,7 +70,7 @@ This trait allows you to get active/inactive status models.

```php

use LaravelReady\ModelSupport\Traits\Sluggable;
use LaravelReady\ModelSupport\Traits\HasActive;
...

$model->status(true|false); // will return $query->where('active', $status);
Expand Down

0 comments on commit e217f9a

Please sign in to comment.