In the laravel controller if someone wants to just send html as response and show it in the browser what is the best way to perform this action without any issue.
I want something like:
$html = "<html>-- All html document content --</html>"// to show as html in browser.return $html;