May 5th ΚΌ21 1 year ago
use Illuminate\Support\Str;
Str::macro('readDuration', function (...$text) {
$totalWords = str_word_count(implode(" ", $text));
$minutesToRead = round($totalWords / 200);
return (int) max(1, $minutesToRead);
});
echo Str::readDuration($post->text).' min read';