我的laravel不显示图像虽然符号链接是正确的

mnemlml8  于 2023-01-27  发布在  其他
关注(0)|答案(1)|浏览(146)

我输入了php artisan storage:link,下面是我的符号链接。

ls -la public
storage -> /home/arosotomakas/Desktop/recipehouse_laravel/storage/app/public

这是我的公共和存储目录的屏幕截图。

和以下是显示功能的代码。

<img src="{{ asset('storage/'. $recipe->file_path) }}">
<img src="{{ asset('storage/tesuto1.png') }}">
<img src="{{ asset('public/storage/tesuto1.png') }}">
<img src="../../../storage/{{$recipe->file_path}}" alt="recipe image">

这是我在开发工具中的控制台错误。

我的设定哪里错了?
谢谢你的帮助。

r7xajy2e

r7xajy2e1#

我不得不输入./vendor/bin/sail php artisan storage:link.
我不小心输入了php artisan storage:link

相关问题