Skip to content

Commit 6424bd3

Browse files
committed
Fix typos
1 parent 70a0172 commit 6424bd3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- [Generate localized route URL's](#-generate-route-urls) using the `route()` helper.
2121
- [Redirect to localized routes](#-redirect-to-routes) using the `redirect()->route()` helper.
2222
- [Generate localized signed route URL's](#-generate-signed-route-urls).
23-
- [Generate localized versions of the current URL](#-generate-localized-versions-of-the-current-url) with our `Route::localizedUrl()` macro.
23+
- [Generate localized versions of the current URL](#%EF%B8%8F-generate-localized-versions-of-the-current-url) with our `Route::localizedUrl()` macro.
2424
- [Automatically set the appropriate app locale](#%EF%B8%8F-use-middleware-to-update-app-locale) using the middleware.
2525
- Optionally [detect and set the preferred locale in multiple sources](#%EF%B8%8F-use-localizer-to-detect-and-set-the-locale).
2626
- Use localized route keys with [route model binding](#-route-model-binding).
@@ -386,9 +386,9 @@ The `getSlug()` method is just for illustration, so you will need to implement t
386386

387387
### ✍🏻 Generate Signed Route URL's
388388

389-
Generating a [signed route URL](https://laravel.com/docs/5.8/urls#signed-urls) is just as easy.
389+
Generating a [signed route URL](https://laravel.com/docs/urls#signed-urls) is just as easy.
390390

391-
Pass it the route name, the nescessary parameters and you will get the URL for the current locale.
391+
Pass it the route name, the necessary parameters and you will get the URL for the current locale.
392392

393393
```php
394394
$signedUrl = URL::signedRoute('reset.password', ['user' => $id], now()->addMinutes(30));
@@ -400,7 +400,7 @@ You can also generate a signed URL for a specific locale:
400400
$signedUrl = URL::signedRoute($name, $parameters, $expiration, true, 'nl');
401401
```
402402

403-
Check out the [Laravel docs](https://laravel.com/docs/5.8/urls#signed-urls) for more info on signed routes.
403+
Check out the [Laravel docs](https://laravel.com/docs/urls#signed-urls) for more info on signed routes.
404404

405405
### 🌎 Translate Routes
406406

0 commit comments

Comments
 (0)