Answers for "str_limit on eloquent laravel"

PHP
1

Str::limit laravel

use Illuminate\Support\Str;

$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20 , ' ...');

// The quick brown fox...
Posted by: Guest on May-25-2021

Code answers related to "str_limit on eloquent laravel"

Browse Popular Code Answers by Language