unisharp laravel文件管理器缩略图url

unisharp laravel文件管理器缩略图url,laravel,upload,laravel-blade,laravel-8,unisharp-file-manager,Laravel,Upload,Laravel Blade,Laravel 8,Unisharp File Manager,嗨,我正在使用unisharp laravel文件管理器供用户上传其产品照片 当图像上传时 此地址将保存在数据库中 /照片/44/606074649c651.jpg 我可以用它 {{asset('storage/'.$product->cover_img)}} 和保存在此地址中的缩略图 /照片/44/thumbs/606074649c651.jpg 如何获取缩略图的地址以及如何在blade中使用它 这就是答案 @php($lastSlash = strrpos($product->

嗨,我正在使用unisharp laravel文件管理器供用户上传其产品照片

当图像上传时

此地址将保存在数据库中

/照片/44/606074649c651.jpg

我可以用它

{{asset('storage/'.$product->cover_img)}}
和保存在此地址中的缩略图

/照片/44/thumbs/606074649c651.jpg

如何获取缩略图的地址以及如何在blade中使用它

这就是答案

@php($lastSlash = strrpos($product->cover_img,"/"))

src="{{asset('storage/'.substr_replace($product->cover_img, 'thumbs/', $lastSlash+1) .'' .substr($product->cover_img ,$lastSlash+1))}}"