Merge pull request #4436 from evgpisarchik/view_composers_link_update

Added link to 'view composer' page from  'providers' page
This commit is contained in:
Taylor Otwell 2018-08-19 09:54:41 -05:00 committed by GitHub
commit 9e17d19854
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ If your service provider registers many simple bindings, you may wish to use the
<a name="the-boot-method"></a>
### The Boot Method
So, what if we need to register a view composer within our service provider? This should be done within the `boot` method. **This method is called after all other service providers have been registered**, meaning you have access to all other services that have been registered by the framework:
So, what if we need to register a [view composer](/docs/{{version}}/views#view-composers) within our service provider? This should be done within the `boot` method. **This method is called after all other service providers have been registered**, meaning you have access to all other services that have been registered by the framework:
<?php