Skip to content

Commit ac2d3de

Browse files
committed
fix lang folder name
1 parent 883fdc2 commit ac2d3de

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/LaravelValidateServiceProvider.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,14 @@ public function register()
5757

5858
/**
5959
* Publish lang files.
60+
*
61+
* @return void
6062
*/
6163
private function publishLangFiles(): void
6264
{
6365
foreach ($this->langs as $lang) {
6466
$this->publishes([
65-
__DIR__."/Lang/$lang" => lang_path($lang),
67+
__DIR__."/lang/$lang" => lang_path($lang),
6668
], "validate-lang-$lang");
6769
}
6870
}

0 commit comments

Comments
 (0)