Skip to content

Commit

Permalink
Fix typo #172
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue authored Jun 7, 2022
1 parent 4052e33 commit ce6cf9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class User extends Authenticatable
}
```

#### `Overtrue\LaravelFollow\Followable`
#### `Overtrue\LaravelFollow\Traits\Followable`

Then add the Followable trait to your followable model, for example `App\User`:

```php
use Overtrue\LaravelFollow\Followable;
use Overtrue\LaravelFollow\Traits\Followable;

class User extends Authenticatable
{
Expand All @@ -69,7 +69,7 @@ class User extends Authenticatable
or any other model:

```php
use Overtrue\LaravelFollow\Followable;
use Overtrue\LaravelFollow\Traits\Followable;

class Channel extends Model
{
Expand Down

0 comments on commit ce6cf9e

Please sign in to comment.