Hello, I started to learn Laravel and I have a problem. I want to upload image (name -> database), (file -> storage/app/images/product/filename.ext)
I have code to upload file:
$file = $request->file;
$name = $request->file->getClientOriginalName();
$path = "images/product/";
$fileName = time().'-'.$name;
Storage::disk('local')->put($path.$fileName, file_get_contents($file));
I want to get file path (filename from database) in product.blade.php
What code should I enter to get path? I try:
storage/app/images/product/{{ $data->image }}
Regards, Verluro
You could also do it like this
$path = $request->file("file_input_name")->store("images/product/");
$url = Storage::url($path);
$product["image_url"] = $url;
That's going to save it as: "/storage/images/product/filename.ext"
And then access it from your view direclty:
<img src="{{$product->image_url}}"/>
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community