如何在我的视图 blade 中显示来自 laravel 8 中的 storage/app/public/student_img 文件夹的图像

How to display image in my view blade from storage/app/public/student_img folder in laravel 8

I have stored the images inside the storage/app/public/student_img but am not able to fetch images using any method inside the blade.

my filesystem.php setting is
'public' => [
            'driver' => 'local',
            'root' => storage_path('app/public'),
            'url' => env('APP_URL').'/storage',
            'visibility' => 'public',
        ],
// this is the code

像这样获取图像src='storage/app/student_img/{{ $stud->photo }}'

Please help me.

你运行 :

php artisan storage:link

还有吗?

如果您在 /storage/app/public/student_img 有一个文件夹用于保存上传的文件,那么您需要在 /public 文件夹中放置一个指向该文件夹的符号链接。

一旦完成,您就可以在 blade 模板中使用 /storage/app/public/student_img 文件夹中的图像:

<img src="{{url('student_img/image.png')}}">