Skip to content

Commit a9a3798

Browse files
committed
wip
1 parent 96dec73 commit a9a3798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/ProfileAvatarController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __invoke(ProfileAvatarRequest $request)
1818

1919
$path = is_callable(ProfileAvatarRequest::$pathCallback) ? call_user_func(ProfileAvatarRequest::$pathCallback, $request) : $request::$path;
2020

21-
$path = $request->file($request::$userAvatarAttribute)->store($path);
21+
$path = $request->file($request::$userAvatarAttribute)->store($path, 'public');
2222

2323
$user->{$request::$userAvatarAttribute} = $path;
2424
$user->save();

0 commit comments

Comments
 (0)