Skip to content

Commit 969f2ec

Browse files
authored
Update RolesServiceProvider.php
1 parent 32fd97e commit 969f2ec

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/RolesServiceProvider.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ private function publishFiles()
122122
__DIR__.'/Database/Migrations' => database_path('migrations'),
123123
__DIR__.'/Database/Seeds/publish' => database_path('seeds'),
124124
], $publishTag);
125+
126+
$this->publishes([
127+
__DIR__.'/resources/views' => base_path('resources/views/vendor/'.$publishTag),
128+
], $publishTag.'-views');
129+
130+
$this->publishes([
131+
__DIR__.'/resources/lang' => base_path('resources/lang/vendor/'.$publishTag),
132+
], $publishTag.'-lang');
125133
}
126134

127135
/**

0 commit comments

Comments
 (0)