Blade can't convert big amount of html to plain text when using - {!! !!} #44109
Unanswered
acgtwentyone
asked this question in
Q&A
Replies: 1 comment
-
Works fine, maybe you have a CSS rule hiding it. Check the source code (ctrl+u on most browsers) or your developer tools inspector. Tested with a fresh laravel install, changing:
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
$foo = <<<HTML
<!-- same html provided above -->
HTML;
return view('welcome', ['foo' => $foo]);
}); and {!! $foo !!} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description:
When the content is too big, it does not display.
Content:
Steps To Reproduce:
Beta Was this translation helpful? Give feedback.
All reactions