-1
Does anyone know how to make a indentation in the first lines of each paragraph of a text typed through a textarea?
Using php’s nl2br function I can even save and display line-breaking text, but I can’t indent the first line of the paragraph.
Doing so
@php
echo '<p style="text-indent: 1.25cm;">'.nl2br($oficio->texto).'</p>';
@endphp
it gives the indentation only in the first paragraph, the remainder of the paragraphs is without the indentation.