Skip to content

Commit

Permalink
Merge pull request #16 from toxageek/patch-1
Browse files Browse the repository at this point in the history
fix: replace resource_path to lang_path in lang publishing
  • Loading branch information
atmonshi authored Jun 26, 2024
2 parents 74c41e7 + 0b3a0a9 commit 4d5fc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SpatieLaravelTranslatablePluginServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public function boot(): void
{
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__ . '/../resources/lang' => resource_path('lang/vendor/filament-spatie-laravel-translatable-plugin-translations'),
__DIR__ . '/../resources/lang' => lang_path('vendor/filament-spatie-laravel-translatable-plugin-translations'),
], 'filament-spatie-laravel-translatable-plugin-translations');
}

Expand Down

0 comments on commit 4d5fc3c

Please sign in to comment.