Here is the code I'm using.
{!! str_limit($brochure->content, 1) !!} or {{ str_limit($brochure->content, 1) }}
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
When using str_limit to limit text, is there a way to remove the addition of three periods? ...
I'm sizing/styling the first character in a paragraph and thought it would be easy to use str_limit, however it keeps adding ...
The documentation for the helper also states that " ... " will be included.
@Rustproof if you want to use this for styling only you could also use the ::first-letter css selector. See the simple example I've made: https://codepen.io/anon/pen/ZovddG
Browser support: https://caniuse.com/#feat=css-first-letter
Please or to participate in this conversation.