Truncate string in Laravel blade templates

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

    Laravel 6 Update:

    @php
    $value = 'Artificial Intelligence';
    $var = Str::limit($value, $limit = 15, $end = '');
    print_r($var);
    @endphp
    
    

    {{ Illuminate\Support\Str::limit($value, 7) }}

    {!! Str::limit($value, 5) !!}

提交回复
热议问题