Skip to content

Commit

Permalink
Update RolesServiceProvider.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremykenedy authored May 26, 2020
1 parent 32fd97e commit 969f2ec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/RolesServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ private function publishFiles()
__DIR__.'/Database/Migrations' => database_path('migrations'),
__DIR__.'/Database/Seeds/publish' => database_path('seeds'),
], $publishTag);

$this->publishes([
__DIR__.'/resources/views' => base_path('resources/views/vendor/'.$publishTag),
], $publishTag.'-views');

$this->publishes([
__DIR__.'/resources/lang' => base_path('resources/lang/vendor/'.$publishTag),
], $publishTag.'-lang');
}

/**
Expand Down

0 comments on commit 969f2ec

Please sign in to comment.