Skip to content
This repository has been archived by the owner on Mar 24, 2020. It is now read-only.

Commit

Permalink
Adds missing config publishing to Service Provider
Browse files Browse the repository at this point in the history
  • Loading branch information
clarkewing authored Jun 2, 2018
1 parent c6405aa commit 69058c7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/ViewComponentsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ class ViewComponentsServiceProvider extends ServiceProvider
{
public function boot()
{
$this->publishes([
__DIR__.'/../config/view-components.php' => config_path('view-components.php'),
], 'config');

Blade::directive(
'render',
$this->app->make(CompileRenderDirective::class)
Expand Down

0 comments on commit 69058c7

Please sign in to comment.