Is there a truncate modifier for the blade templates in Laravel, pretty much like Smarty?
I know I could just write out the actual php in the template but i\'m looki
You can set string limit as below example:
{{str_limit($biodata ->description, $limit = 20, $end = '...')}}
It will display only the 20 letters including whitespaces and ends with ....
Example image