Skip to content

Commit 141ffb0

Browse files
committed
fix hard coded prefix
1 parent 66d074b commit 141ffb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/traits/LfmHelpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public function getPathPrefix($type)
110110
}
111111

112112
if ($type === 'url' && $base_directory !== 'public') {
113-
$prefix = 'laravel-filemanager/' . $prefix;
113+
$prefix = config('lfm.prefix', 'laravel-filemanager') . '/' . $prefix;
114114
}
115115

116116
return $prefix;

0 commit comments

Comments
 (0)