I have image in base64 encoded string format. I want to return image through URL in laravel I used following code but not working
return response('data:image/png;base64,'.$logo)->header('Content-Type', 'image/png'); //not working
return response($logo)->header('Content-Type', 'image/png');//not working
I don't want image like this: <img src="data:image/png;base64,'.$logo.'">
because image need to show in email body.