I'm developing a project using Laravel.
When I try to show the details of an actor on the screen, it shows everything on the same line like this:
Is taking the
as a text and not as a page break.
This is my code portion
public function getDetails()
{
return ('id :'.$this->id.'<br>'.'Nombre: '.$this->first_name.'<br>'.'Apellido: '.$this->last_name.'<br>'.'Rating: '.$this->rating.'<br>'.'Id de pelicula favorita: '.$this->favorite_movie_id);
}
I would like to show every detail in a separate line.
Thanks !!