-
Hi, is there a way to easily set the visibility for cloud providers like s3 via an optional argument on the save method (see Storage::put method)? Thx |
Beta Was this translation helpful? Give feedback.
Answered by
msucevan
Mar 1, 2024
Replies: 2 comments 1 reply
-
I created a PR in order to support this functionality. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Merged #92 Now, you can pass visibility as parameter in the disk method: Pdf::view('pdf', ['model' => $model])
->disk('public')
->save('models/'.$filename); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
pushpanda
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Merged #92
Now, you can pass visibility as parameter in the disk method: