dcasia / nova-filepond

A Nova field for uploading File, Image and Video using Filepond.
MIT License
48 stars 27 forks source link

Use cloud storage(S3 or OSS) wrong #34

Closed imnpc closed 11 months ago

imnpc commented 11 months ago

Laravel 10 Nova 4.27.14

after uploading image, save and edit, can't load the uploaded image from cloud storage(S3 or OSS). if use local disk,it will work ok.

WX20231012-143510@2x

Filepond::make(__('pictures'),'pictures')
              ->multiple()
              ->allowReorder()
              ->disk(config('filesystems.default'))
              ->path('goods/pictures/'. date('Y/m/d')) // 图片存储路径
              ->image(),
milewski commented 11 months ago

Hao le, xianzai keyi yong v1.0.1

imnpc commented 11 months ago

Now work ok Thanks!