Truncate string in Laravel blade templates

后端 未结 11 1101
死守一世寂寞
死守一世寂寞 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 15:55

    This works on Laravel 5:

    {!!strlen($post->content) > 200 ? substr($post->content,0,200) : $post->content!!}
    

提交回复
热议问题