首页 > 解决方案 > 我没有得到 laravel 8 jetstream 个人资料照片路径。它节省了存储空间

问题描述

我正在使用喷射流。我没有得到个人资料图片 [点击图片][1] [1]:https://i.stack.imgur.com/7DSjK.png 这里是 devtool 代码

<img class="h-8 w-8 rounded-full object-cover" src="http://jed.test/storage/profile-photos/zmgDcXE9utwTH7E3vwtt8YxnoHVsfxbDovb8UKiw.jpeg" alt="Rifat">

标签: laravel-8

解决方案


如果要将图像保存在默认磁盘 ( config/filesystems.php) 上:

'local' => [
    'driver' => 'local',
    'root' => storage_path('app'),
],

图像保存在storage/app文件夹中,要访问它,您需要运行php artisan storage:link它,它将在您的公用文件夹上创建一个符号链接


推荐阅读