上传到数据库后,图片没有显示在导航栏中。我认为文件存储路径有问题,但我不知道哪里出错了。
这是图像存储路径
$image = $request->file('picture')
$path = $image->store('public/images');
$yourModel = new User();
$yourModel->name = $validateData['name'];
$yourModel->email = $validateData['email'];
$yourModel->password = $validateData['password'];
$yourModel->image = $path;
1条答案
按热度按时间kmynzznz1#
您将图像存储在公共图像中,而在Blade中,您说显示图像形式storage/images不正确,您需要将图像html更改为
<img class="" src="{{ asset('images/' . Auth::user()->image) }}">