Hi there, I don't how I can get the last characters of my string.
What I am making is a read more button, in the first part it gets the characters from 0 to 100 (works fine), but then in the second part I want all the characters from 100 till the end of the string... Does someone know how to please?
<span>{{substr($calendar->details, 0, 100)}}{{ strlen($calendar->details) > 100 ? "..." : ""}} </span>
<div>
<span id="text">
here all the text after 100 charachters
</span>
</div>
<div class="btn-container">
<button id="toggle">Read More</button>
</div>