Skip to content

Commit

Permalink
Correcting some spelling mistakes in the document
Browse files Browse the repository at this point in the history
  • Loading branch information
asharifineyestani committed Mar 9, 2023
1 parent 296a27f commit cf699f3
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 @@ -80,7 +80,7 @@ return [
];
```

For controllers outside of the applications root namespace directories can also be added using a `namespace => path` pattern in the directories array. In the following example controllers from `Modules\Admin\Http\Controllers` will be included.
For controllers outside the applications root namespace directories can also be added using a `namespace => path` pattern in the directories array. In the following example controllers from `Modules\Admin\Http\Controllers` will be included.

```php
'directories' => [
Expand Down Expand Up @@ -347,7 +347,7 @@ your subdomain will be different on your development environment to your product
// config/domains.php
return [
'main' => env('SITE_URL', 'example.com'),
'subdomain' => env('SUBDOMAIN_URL', 'subdomain.exmaple.com')
'subdomain' => env('SUBDOMAIN_URL', 'subdomain.example.com')
];
```

Expand Down Expand Up @@ -400,7 +400,7 @@ Route::get('/users/{user}/posts/{post}', function (User $user, Post $post) {

You can also use the annotation on controllers to enable implicitly scoped bindings for all its methods.

### Specifying wheres
### Specifying where

You can use the `Where` annotation on a class or method to constrain the format of your route parameters.

Expand Down

0 comments on commit cf699f3

Please sign in to comment.