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