doudou6050 2016-04-04 12:20
浏览 192
已采纳

Laravel访问上传的文件

I've successfully uploaded an image like this:

Storage::put($path,$request->file($name));

But how could I acces this right now? The file is in storage/app/employees/3/profile.

When I go to .dev/storage/app/employees/3/profile/image.png the route is not found.

  • 写回答

1条回答 默认 最新

  • dongqing483174 2016-04-04 12:23
    关注

    your image path will be

    <img src="{{storage_path('app/employees/3/profile/image.png')}}">
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?