Simply, Convert the results to an Eloquent Collection
use Illuminate\Support\Collection; // Import if not already imported
$acc = DB::select('select id,name from accounts limit 5'); return $collection = collect($acc);