Skip to content

Commit

Permalink
fixed a typo: ' instead of ` (#5377)
Browse files Browse the repository at this point in the history
Co-authored-by: Christoph Schweppe <info@cschweppe.de>
  • Loading branch information
claws99 and emptynick committed Aug 28, 2021
1 parent 10957c7 commit 81ed543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core-concepts/roles-and-permissions.md
Expand Up @@ -55,7 +55,7 @@ Check the permission for each role that you wish to grant access to the site at
You may create your own [gate](https://laravel.com/docs/authorization#gates)

```php
Gate::define(`browse_create_bill`, function ($user) {
Gate::define('browse_create_bill', function ($user) {
return $user->hasPermission(`browse_create_bill`);
});
```
Expand Down

0 comments on commit 81ed543

Please sign in to comment.