Skip to content

Commit ff8510d

Browse files
authored
fix: path issue
1 parent d18e782 commit ff8510d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/LangService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function load(string $file): array
1313
}
1414

1515
$lang = app()->getLocale();
16-
$basePath = rtrim(config('lang-manager.lang_path', lang_path()), '/');
16+
$basePath = rtrim(config('inertia-lang.lang_path', lang_path()), '/');
1717
$path = "{$basePath}/{$lang}/{$file}.php";
1818

1919
$this->loaded[$file] = file_exists($path) ? require $path : [];

0 commit comments

Comments
 (0)