I have added png images as BLOB on mysql but when I try to retrieve them, I got them as files but can\'t display as images.
Below is my code.
//Controller
<img src="data:image/png;base64,{{ chunk_split(base64_encode($posts2year->StudentImage)) }}" height="100" width="100">
I used this in my code and it worked.