So I want to keep linebreaks from the database while using the Blade Template Engine. I came up on the idea using
{!! nl2br(e($task->text)) !!}
Below solution worked in blade file in Laravel 5.7 version for me:
{!! nl2br(e($contactusenquiry_message), false) !!}
Thanks to ask this question.