Fix upload paths

This commit is contained in:
Chris Hunt
2024-02-18 20:26:20 +00:00
parent d184427016
commit fb7f9de127
4 changed files with 6 additions and 6 deletions

View File

@@ -77,7 +77,7 @@ class SettingsController extends Controller
);
}
$path = $request->file('value')->store('backgrounds');
$path = $request->file('value')->store('backgrounds', 'public');
if ($path === null) {
throw new \Exception('file_not_stored');