Unable to display images from local inventory in Play 2 framework using Scala

29 Views Asked by At

I have few images stored in local directory. The path of the images are stored in a local database.

I am unable to display the images in front end.

Model code :

package models

case class Post(image_path: String)

.HTML code :

@for(post <- posts) {

<img src='@routes.Assets.versioned("@post.body")'
                        class="img-fluid">

}
0

There are 0 best solutions below