On controller.
$your_variable = '';
$your_variable .= 'Hello world
';
return view('viewname')->with('your_variable', $your_variable)
If you do not want your data to be escaped, you may use the following syntax:
{!! $your_variable !!}
Output
Hello world