Hello,
I am trying to create a space between line yet it does not work. It suppose to go to the next line. Instead of printing space it actually prints the html tag <br>. Any clue how to fix this problem?
$content = "Someone purchase your picture".<br><br>;
foreach ($request->input('pic') as $key => $value) {
$content .= "$key : $value".<br>;
}