Level 73
In the later versions of Laravel those global functions were removed, so use the facade now: https://laravel.com/docs/8.x/helpers#method-str-limit
{{ Illuminate\Support\Str::limit($post->body, 100, '') }}
or install the helpers composer require laravel/helpers