【发布时间】:2022-01-09 17:29:52
【问题描述】:
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.
【问题讨论】:
标签: image laravel-8 public app-folder