Error: Call to a member function union() on int
$category = Category::select('name')->count();
$city = City::select('city')->count();
$client = Client::select('name')->count();
$property = Property::select('name')->count()
                    ->union($category)
                    ->union($city)
                    ->union($client)
                    ->get();
dd($property);
 
    