truncate table in laravel 7 code example
Example 1: laravel truncate string laravel 8
use Illuminate\Support\Str;
$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20);
// The quick brown fox...
Example 2: truncate table laravel eloquent
Visitor::query()->truncate();