Skip to content

Commit

Permalink
Update docs link
Browse files Browse the repository at this point in the history
  • Loading branch information
drbyte authored Nov 27, 2024
1 parent d0b39ca commit 7efb0af
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/advanced-usage/exceptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ title: Exceptions
weight: 3
---

If you need to override exceptions thrown by this package, you can simply use normal [Laravel practices for handling exceptions](https://laravel.com/docs/10.x/errors#rendering-exceptions).
If you need to override exceptions thrown by this package, you can simply use normal [Laravel practices for handling exceptions](https://laravel.com/docs/errors#rendering-exceptions).

An example is shown below for your convenience, but nothing here is specific to this package other than the name of the exception.

You can find all the exceptions added by this package in the code here: [https://github.com/spatie/laravel-permission/tree/main/src/Exceptions](https://github.com/spatie/laravel-permission/tree/main/src/Exceptions)


**app/Exceptions/Handler.php**
**Laravel 10: app/Exceptions/Handler.php**
```php

public function register()
Expand All @@ -24,11 +24,9 @@ public function register()
}
```

**If you are running Laravel v11**
**Laravel 11: bootstrap/app.php**
```php

// bootstrap/app.php

->withExceptions(function (Exceptions $exceptions) {
$exceptions->render(function (\Spatie\Permission\Exceptions\UnauthorizedException $e, $request) {
return response()->json([
Expand Down

0 comments on commit 7efb0af

Please sign in to comment.