How to render html from a @foreach loop in a textarea
PHP Snippet 1:
<textarea rows="10" class="w-full bg-yellow-100">{{ implode("\n", $list->pluck('name')) }}</textarea>
PHP Snippet 2:
<textarea rows="10" class="w-full bg-yellow-100">{{ $list->implode('name', "\n") }}</textarea>