Skip to content

Commit 2bc72c3

Browse files
committed
fix
1 parent 8d08101 commit 2bc72c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/LaravelValidateServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class LaravelValidateServiceProvider extends ServiceProvider
1313
*/
1414
public function register()
1515
{
16-
$this->publishes([__DIR__ . '/../validation' => lang_path('/')], 'lang');
16+
$this->publishes([__DIR__ . '/../validation' => lang_path()], 'lang');
1717

1818
$this->loadTranslationsFrom(__DIR__ . '/../lang', 'validation');
1919
}

src/Rules/ValidBase64.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ public function passes($attribute, $value)
2525
*/
2626
public function message()
2727
{
28-
return __('valid.base64');
28+
return __('base64');
2929
}
3030
}

0 commit comments

Comments
 (0)