Limitez le nombre de mots à afficher sur l'extrait d'articles de blog avec Laravel

Str::words($post->body,10);

//Use along with complete namespace, like this:

\Illuminate\Support\Str::words($post->body, 10);

\Illuminate\Support\Str::words($post->body, 10,'...');
Talented Toad