Answers for "how to return chunk data laravel"

PHP
1

how to return chunk data laravel

$count = 0;
DB::table('users')->chunk(200, function($users) use (&$count)
{
    Log::debug(count($users)); // will log the current iterations count
    $count = $count + count($users); // will write the total count to our method var
});
Log::debug($count); // will log the total count of records
Posted by: Guest on February-12-2021

Code answers related to "how to return chunk data laravel"

Browse Popular Code Answers by Language