如何从存储中访问直接图像?
我正在storage/images/clients/
中保存项目中的图像如何检索这些图像并将其显示在视图中?
答案 0 :(得分:2)
您需要在storage/images
和public/images
:
ln -s /full/path/to/storage/images /full/path/to/public/images
然后你就可以使用这些图像:
<img src="{{ asset('images/clients/john.jpg') }}">
答案 1 :(得分:0)
要检索文件的原始内容,请使用:
$contents = Storage::get('/path/to/file.jpg');
但是如果你只是想在视图中显示它,就不需要任何特殊的繁琐方法,只需使用
<img src="/path/to/file.jpg">