我输入了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">
这是我在开发工具中的控制台错误。
我的设定哪里错了?
谢谢你的帮助。
1条答案
按热度按时间r7xajy2e1#
我不得不输入
./vendor/bin/sail php artisan storage:link.
我不小心输入了
php artisan storage:link