Support the ongoing development of Laravel.io →
Requests Database Views

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

Last updated 2 years ago.
0

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}}"/>
0

Thank you! :)

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Verluro verluro Joined 23 Apr 2018

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.