Truncate string in Laravel blade templates

后端 未结 11 1093
死守一世寂寞
死守一世寂寞 2020-12-07 15:28

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

11条回答
  •  独厮守ぢ
    2020-12-07 16:06

    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

提交回复
热议问题