我需要在blade中显示上传到存储/视频中的视频,但我不知道该怎么做。为了将它们上传到存储中,我将这些代码放在filesystems.php 中
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
'video' => [
'driver' => 'local',
'root' => storage_path(),
'url' => env('APP_URL').'storage/video',
'visibility' => 'public',
],
我尝试了许多组合的路径,但没有人的工作
url/storage/video/VHqPwguZeM6mf4csBTfj.mp4
or
url/storage/VHqPwguZeM6mf4csBTfj.mp4
or
url/video/VHqPwguZeM6mf4csBTfj.mp4
有人能帮我吗?
谢谢!
解决方案很简单,一旦您将视频上传到存储/视频中,您就必须执行两个步骤:
- php手工存储:链接此命令将您的公用文件夹与存储链接,然后您可以在公用文件夹中找到存储文件夹的快捷方式。2.在刀片文件中执行以下操作: