Trouble printing out image from public folder laravel
问题 I want to show the image that I had just uploaded and only show it to those who have uploaded it. For example, user table contain jack, Emily and John, so if jack were to upload a file the image will show directly under him, but I don't know how to do it? This is how it look like now: Controller: (how I store the image) public function store1(Request $request){ $this->validate($request, [ 'file' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048', ]); if ($request->hasFile('file')) {