Skip to content

Commit

Permalink
Update uuid.md (#2764)
Browse files Browse the repository at this point in the history
fix class location
  • Loading branch information
ken-tam authored Nov 19, 2024
1 parent 516e7bd commit 4981e71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advanced-usage/uuid.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ And edit `config/permission.php`
*/

- 'permission' => Spatie\Permission\Models\Permission::class
+ 'permission' => App\Models\Permission::class,
+ 'permission' => \App\Models\Permission::class,

/*
* When using the "HasRoles" trait from this package, we need to know which
Expand All @@ -177,7 +177,7 @@ And edit `config/permission.php`
*/

- 'role' => Spatie\Permission\Models\Role::class,
+ 'role' => App\Models\Role::class,
+ 'role' => \App\Models\Role::class,

],
```

0 comments on commit 4981e71

Please sign in to comment.