- app logo extension fix

- redirect when user is logged in sign in/up page
This commit is contained in:
Čarodej
2022-03-25 16:48:15 +01:00
parent c5810e962b
commit 43f2a43d6c
4 changed files with 81 additions and 71 deletions

View File

@@ -442,7 +442,7 @@ if (! function_exists('store_system_image')) {
$image = $request->file($name);
// Store avatar
$filename = Str::uuid() . $image->getClientOriginalExtension();
$filename = Str::uuid() . '.' . $image->getClientOriginalExtension();
// Store image to disk
Storage::putFileAs('system', $image, $filename);